cppcheck: Update SUSYToolsAlg.cxx to follow cppcheck suggestions.
Following cppcheck suggestions:
Searching before insertion is not necessary. Instead of 'syst_all[sys_affects]={"Nominal"}' consider using 'syst_all.try_emplace(sys_affects, {"Nominal"});'.
Searching before insertion is not necessary. Instead of 'syst_weights[sys_affects]={"Nominal"}' consider using 'syst_weights.try_emplace(sys_affects, {"Nominal"});'. |
Tag @sroe