Skip to content

Commit 6de5d91

Browse files
authored
[PWGJE] Adding track outlier QA histogram (#11411)
1 parent eb0f175 commit 6de5d91

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

PWGJE/Tasks/jetHadronRecoil.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ struct JetHadronRecoil {
120120
{"hPtTrack", "Track p_{T};p_{T};entries", {HistType::kTH1F, {{200, 0, 200}}}},
121121
{"hEtaTrack", "Track #eta;#eta;entries", {HistType::kTH1F, {{100, -1.0, 1.0}}}},
122122
{"hPhiTrack", "Track #phi;#phi;entries", {HistType::kTH1F, {{100, 0.0, o2::constants::math::TwoPI}}}},
123+
{"hPtTrackPtHard", "Track p_{T} vs #hat{p};p_{T};#frac{p_{T}}{#hat{p}}", {HistType::kTH2F, {{200, 0, 200}, {20, 0, 5}}}},
123124
{"hConstituents3D", "3D constituents histogram;p_{T};#eta;#phi", {HistType::kTH3F, {{200, 0, 200}, {100, -1.0, 1.0}, {100, 0.0, o2::constants::math::TwoPI}}}},
124125
{"hReferencePtDPhi", "jet p_{T} vs DPhi;#Delta#phi;p_{T,jet}", {HistType::kTH2F, {{100, 0, o2::constants::math::TwoPI}, {500, -100, 400}}}},
125126
{"hReferencePtDPhiShifts", "rho shifts;#Delta#phi;p_{T,jet};shifts", {HistType::kTH3F, {{100, 0, o2::constants::math::TwoPI}, {500, -100, 400}, {20, 0.0, 2.0}}}},
@@ -231,6 +232,7 @@ struct JetHadronRecoil {
231232
registry.fill(HIST("hPtTrack"), track.pt(), weight);
232233
registry.fill(HIST("hEtaTrack"), track.eta(), weight);
233234
registry.fill(HIST("hPhiTrack"), track.phi(), weight);
235+
registry.fill(HIST("hPtTrackPtHard"), track.pt(), track.pt() / pTHat);
234236
}
235237

236238
if (nTT > 0) {

0 commit comments

Comments
 (0)