Skip to content

Commit

Permalink
And a code-format fix...
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-kaspar committed May 19, 2020
1 parent 9277e16 commit 00d5c66
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion RecoPPS/ProtonReconstruction/plugins/CTPPSProtonProducer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,8 @@ void CTPPSProtonProducer::produce(edm::Event &iEvent, const edm::EventSetup &iSe
matching = false;
else if (ac.xi_cut_apply && std::abs(pr_i.xi() - pr_j.xi() - ac.xi_cut_mean) > ac.xi_cut_value)
matching = false;
else if (ac.th_y_cut_apply && std::abs(pr_i.thetaY() - pr_j.thetaY() - ac.th_y_cut_mean) > ac.th_y_cut_value)
else if (ac.th_y_cut_apply &&
std::abs(pr_i.thetaY() - pr_j.thetaY() - ac.th_y_cut_mean) > ac.th_y_cut_value)
matching = false;

if (!matching)
Expand Down

0 comments on commit 00d5c66

Please sign in to comment.