Skip to content

Commit

Permalink
change to const reference
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Kunkle authored and deguio committed May 28, 2018
1 parent 6366cdd commit ea810fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RecoMET/METProducers/src/HcalNoiseInfoProducer.cc
Expand Up @@ -715,7 +715,7 @@ HcalNoiseInfoProducer::filldigis(edm::Event& iEvent, const edm::EventSetup& iSet
int ieta = laserMonIEtaList_[ich];

// loop over digis, find the digi that matches this channel
for(QIE10DataFrame df : (*hLasermon)) {
for(const QIE10DataFrame & df : (*hLasermon)) {
HcalCalibDetId calibId( df.id() );

int ch_cboxch = calibId.cboxChannel();
Expand Down

0 comments on commit ea810fb

Please sign in to comment.