Skip to content

Commit ffa59af

Browse files
committed
Please consider the following formatting changes
1 parent e52916f commit ffa59af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGJE/Tasks/fullJetSpectra.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)