Skip to content

Commit

Permalink
Beam distance check fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomohiko Tanabe committed Jan 29, 2020
1 parent 307f6e2 commit dad78f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/JetFinder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -682,8 +682,10 @@ vector<Jet*> JetFinder::run(vector<Jet*> jets, double* pymin, int ynjetmax) {
jmin = i2;
}
}
}

// beamDist check
// beamDist check
for (int i1=0; i1<njet; ++i1) {
if (_cfg.useBeamJets && distBeam[i1] < Ymin) {
Ymin = distBeam[i1];
bmin = i1;
Expand Down

0 comments on commit dad78f7

Please sign in to comment.