diff --git a/LArCalorimeter/LArCellRec/src/LArNoisyROTool.cxx b/LArCalorimeter/LArCellRec/src/LArNoisyROTool.cxx index 67839ad1d330f7936f07a73b2bebd755f27e85e8..0e3e1c3d37e2dd48ccb02c3d328eb347d5177dd9 100644 --- a/LArCalorimeter/LArCellRec/src/LArNoisyROTool.cxx +++ b/LArCalorimeter/LArCellRec/src/LArNoisyROTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration */ // LArNoisyROTool.cxx @@ -158,7 +158,7 @@ std::unique_ptr<LArNoisyROSummary> LArNoisyROTool::process(const CaloCellContain // loop on all FEBs and check whether FEB can be declared as bad for the different type of flags: // regular noise burst, weighted noise burst, MNB tight and loose - for ( FEBEvtStatMapCstIt it = FEBStats.begin(); it != FEBStats.end(); it++ ) { + for ( FEBEvtStatMapCstIt it = FEBStats.begin(); it != FEBStats.end(); ++it ) { ATH_MSG_DEBUG(" bad FEB " << it->first << " with " << it->second.badChannels() << " bad channels"); if ( it->second.badChannels() > m_BadChanPerFEB ) { noisyRO->add_noisy_feb(HWIdentifier(it->first));