Skip to content

Commit

Permalink
Fix typo in MollerVertex selection condition.
Browse files Browse the repository at this point in the history
  • Loading branch information
mholtrop committed Sep 19, 2024
1 parent 8cc660f commit 6e9f4ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ private void makeMollerCandidates(ReconstructedParticle topElectron, Reconstruct
// Generate a candidate vertex and particle.
BilliorVertex vtxFit = fitVertex(constraint, topElectron, botElectron);
ReconstructedParticle candidate = makeReconstructedParticle(topElectron, botElectron, vtxFit);
if (candidate.getMomentum().magnitude() > cuts.getMaxVertexP() || candidate.getMomentum().magnitude() < cuts.getMinMollerP()) {
if (candidate.getMomentum().magnitude() > cuts.getMaxMollerP() || candidate.getMomentum().magnitude() < cuts.getMinMollerP()) {
continue;
}
if (candidate.getStartVertex().getProbability() < cuts.getMinMollerChisqProb()) {
Expand Down

0 comments on commit 6e9f4ce

Please sign in to comment.