Better variable names

This commit is contained in:
Carles Fernandez 2023-11-28 11:05:18 +01:00
parent 2b708c2e4a
commit 3c24b564c9
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
1 changed files with 3 additions and 3 deletions

View File

@ -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())