Skip to content
Snippets Groups Projects

LumiBlockData+LArRawConditions+TileEvent: Fix cppcheck warning.

Merged Scott Snyder requested to merge ssnyder/athena:cppcheck.LumiBlockData-20200623 into master
3 files
+ 6
8
Compare changes
  • Side-by-side
  • Inline
Files
3
//Dear emacs, this is -*- c++ -*-
/*
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
/**
@@ -796,7 +796,7 @@ LArConditionsContainer<T>::completeCorrectionChannels() {
INSERTMAP::const_iterator it1=idsToInsert.begin();
INSERTMAP::const_iterator it1_e=idsToInsert.end();
for (;it1!=it1_e;it1++) {
for (;it1!=it1_e;++it1) {
const unsigned gain=it1->second.second;
const int coolChannel=it1->first;
result.push_back(coolChannel);
Loading