mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-04-09 12:16:46 +00:00
Better variable names
This commit is contained in:
parent
2b708c2e4a
commit
3c24b564c9
@ -596,10 +596,10 @@ int main(int argc, char** argv)
|
||||
for (auto& it : f_if_estimation_Hz_map)
|
||||
{
|
||||
mean_f_if_Hz += it.second;
|
||||
const auto est_Hz = f_fs_estimation_Hz_map.find(it.first);
|
||||
if (est_Hz != f_fs_estimation_Hz_map.cend())
|
||||
const auto est_fs = f_fs_estimation_Hz_map.find(it.first);
|
||||
if (est_fs != f_fs_estimation_Hz_map.cend())
|
||||
{
|
||||
mean_fs_Hz += est_Hz->second;
|
||||
mean_fs_Hz += est_fs->second;
|
||||
}
|
||||
const auto est_ppm = f_ppm_estimation_Hz_map.find(it.first);
|
||||
if (est_ppm != f_ppm_estimation_Hz_map.cend())
|
||||
|
Loading…
x
Reference in New Issue
Block a user