Skip to content

Commit

Permalink
fix pT selection
Browse files Browse the repository at this point in the history
  • Loading branch information
gsafronov committed Oct 6, 2015
1 parent 35ea98d commit 72ce18a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions HLTrigger/special/src/HLTPixlMBFilt.cc
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ bool HLTPixlMBFilt::hltFilter(edm::Event& iEvent, const edm::EventSetup& iSetup,
int itrk = -1;
if (tracks->size() >= min_trks_) {
for (ipixl=apixl; ipixl!=epixl; ipixl++){
if (ipixl->pt() < min_Pt_) continue;
itrk++;
const double& ztrk1 = ipixl->vz();
const double& etatrk1 = ipixl->momentum().eta();
Expand All @@ -110,6 +111,7 @@ bool HLTPixlMBFilt::hltFilter(edm::Event& iEvent, const edm::EventSetup& iSetup,
// check this track against all others to see if others start from same point
int jtrk=-1;
for (jpixl=apixl; jpixl!=epixl; jpixl++) {
if (jpixl->pt() < min_Pt_) continue;
jtrk++;
if (jpixl==ipixl) continue;
const double& ztrk2 = jpixl->vz();
Expand Down

0 comments on commit 72ce18a

Please sign in to comment.