File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -799,7 +799,7 @@ struct FullJetSpectra {
799799 for (const auto & constituent : jet.template tracks_as <T>()) {
800800 const float pt = constituent.pt ();
801801
802- // Reject entire jet if ANY track fails the cuts
802+ // Reject entire jet if ANY track fails the cuts
803803 if ((minTrackPt > kLeadingTrackPtMinThreshold && pt < minTrackPt) ||
804804 (maxTrackPt < kLeadingTrackPtMaxThreshold && pt > maxTrackPt)) {
805805 return false ; // Reject the jet
@@ -820,7 +820,7 @@ struct FullJetSpectra {
820820 for (const auto & cluster : jet.template clusters_as <S>()) {
821821 const double pt = cluster.energy () / std::cosh (cluster.eta ());
822822
823- // Reject entire jet if ANY cluster fails the cuts
823+ // Reject entire jet if ANY cluster fails the cuts
824824 if ((minClusterPt > kLeadingClusterPtMinThreshold && pt < minClusterPt) ||
825825 (maxClusterPt < kLeadingClusterPtMaxThreshold && pt > maxClusterPt)) {
826826 return false ;
You can’t perform that action at this time.
0 commit comments