We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d56d0da + e8d3a9a commit b4f473cCopy full SHA for b4f473c
1 file changed
PWGJE/Tasks/trackJetSpectra.cxx
@@ -974,14 +974,14 @@ struct TrackJetSpectra {
974
}
975
976
for (const auto& jetDet : detJets) {
977
- if(isJetWithHighPtConstituent(jetDet, tracks))
978
- continue;
979
-
980
- auto detJetPt = jetDet.pt();
981
- spectra.fill(HIST("hDetLevelInclusiveJetsPt"), detJetPt, weight);
982
- if (!jetDet.has_matchedJetGeo()) {
983
- spectra.fill(HIST("hFakeInclusiveJetsPt"), detJetPt, weight);
984
- }
+ if (isJetWithHighPtConstituent(jetDet, tracks))
+ continue;
+
+ auto detJetPt = jetDet.pt();
+ spectra.fill(HIST("hDetLevelInclusiveJetsPt"), detJetPt, weight);
+ if (!jetDet.has_matchedJetGeo()) {
+ spectra.fill(HIST("hFakeInclusiveJetsPt"), detJetPt, weight);
+ }
985
986
987
};
0 commit comments