Skip to content

Commit

Permalink
Merge pull request #1052 from JeffersonLab/iss_1051
Browse files Browse the repository at this point in the history
Fix typo in MollerVertex selection condition.
  • Loading branch information
sarahgaiser authored Oct 3, 2024
2 parents 9e9aa5d + 6e9f4ce commit ebef32b
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 ebef32b

Please sign in to comment.