Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions HLTrigger/Muon/plugins/HLTL1MuonSelector.cc
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,8 @@ void HLTL1MuonSelector::produce(edm::StreamID, edm::Event& iEvent, const edm::Ev
LogTrace(metname) << "Number of muons " << muColl->size() << endl;

L1MuonParticleCollection::const_iterator it;
L1MuonParticleRef::key_type l1ParticleIndex = 0;

for (it = muColl->begin(); it != muColl->end(); ++it, ++l1ParticleIndex) {
for (it = muColl->begin(); it != muColl->end(); ++it) {
const L1MuGMTExtendedCand muonCand = (*it).gmtMuonCand();
unsigned int quality = 0;
bool valid_charge = false;
Expand Down