Skip to content

Commit

Permalink
fix declaration mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
hardenbr committed Oct 22, 2015
1 parent c50bf72 commit 23a8a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HLTrigger/special/src/HLTRechitsToDigis.cc
Expand Up @@ -158,7 +158,7 @@ HLTRechitsToDigis::produce(edm::Event& iEvent, edm::EventSetup const& setup) {
// loop over the collection of rechits and match to digis
EcalRecHitCollection::const_iterator ituneEE;
for (ituneEE = recHitsHandle->begin(); ituneEE != recHitsHandle->end(); ituneEE++) {
EcalRecHit const & EcalRecHit hit = (*ituneEE);
EcalRecHit const & hit = (*ituneEE);
EcalDigiCollection::const_iterator digiLookUp = digisEE->find(hit.id());
// protect against a digi not existing for the saved rechit
if(digiLookUp == digisEE->end()) continue;
Expand Down

0 comments on commit 23a8a9a

Please sign in to comment.