From ffa59afe33b480c7991a0de74f9c2e2ebbc114d3 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Wed, 11 Feb 2026 12:27:47 +0000 Subject: [PATCH] Please consider the following formatting changes --- PWGJE/Tasks/fullJetSpectra.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PWGJE/Tasks/fullJetSpectra.cxx b/PWGJE/Tasks/fullJetSpectra.cxx index 7e0b5b10463..635748e5862 100644 --- a/PWGJE/Tasks/fullJetSpectra.cxx +++ b/PWGJE/Tasks/fullJetSpectra.cxx @@ -799,7 +799,7 @@ struct FullJetSpectra { for (const auto& constituent : jet.template tracks_as()) { 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 @@ -820,7 +820,7 @@ struct FullJetSpectra { for (const auto& cluster : jet.template clusters_as()) { 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;