Skip to content

Commit cd87309

Browse files
authored
Merge pull request #36 from alibuild/alibot-cleanup-14913
Please consider the following formatting changes to #14913
2 parents e52916f + ffa59af commit cd87309

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)