Skip to content

Commit

Permalink
Merge pull request #407 from amarini/port_of_kfloose
Browse files Browse the repository at this point in the history
Port of KF loose requirements
  • Loading branch information
amarini authored Apr 1, 2019
2 parents e098ac9 + 836e6f3 commit 79b2bd5
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Nero/src/NeroLeptons.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -257,9 +257,11 @@ int NeroLeptons::analyze(const edm::Event & iEvent)

if (mu.innerTrack().isNull()) continue;
// for kinematic fit. Must have track
++nMuons;
selectedMuons.push_back(mu);
selectedIndex.push_back(leptons.size()-1);
if (mu.isLooseMuon()){
++nMuons;
selectedMuons.push_back(mu);
selectedIndex.push_back(leptons.size()-1);
}
}

// Muon Vertex fitter
Expand Down

0 comments on commit 79b2bd5

Please sign in to comment.