Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions PWGJE/Tasks/fullJetSpectra.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ struct FullJetSpectra {
for (const auto& constituent : jet.template tracks_as<T>()) {
const float pt = constituent.pt();

//Reject entire jet if ANY track fails the cuts
// Reject entire jet if ANY track fails the cuts
if ((minTrackPt > kLeadingTrackPtMinThreshold && pt < minTrackPt) ||
(maxTrackPt < kLeadingTrackPtMaxThreshold && pt > maxTrackPt)) {
return false; // Reject the jet
Expand All @@ -820,7 +820,7 @@ struct FullJetSpectra {
for (const auto& cluster : jet.template clusters_as<S>()) {
const double pt = cluster.energy() / std::cosh(cluster.eta());

//Reject entire jet if ANY cluster fails the cuts
// Reject entire jet if ANY cluster fails the cuts
if ((minClusterPt > kLeadingClusterPtMinThreshold && pt < minClusterPt) ||
(maxClusterPt < kLeadingClusterPtMaxThreshold && pt > maxClusterPt)) {
return false;
Expand Down
Loading