Skip to content

Commit 6b619db

Browse files
authored
[PWGJE] Adding outlier cut histograms for triggers (#11423)
1 parent ce12bc8 commit 6b619db

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

PWGJE/Tasks/jetHadronRecoil.cxx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ struct JetHadronRecoil {
116116

117117
HistogramRegistry registry{"registry",
118118
{{"hNtrig", "number of triggers;trigger type;entries", {HistType::kTH1F, {{2, 0, 2}}}},
119+
{"hSignalTriggersPtHard", "Signal triggers vs PtHard", {HistType::kTH1F, {{20, 0, 5}}}},
120+
{"hReferenceTriggersPtHard", "Reference triggers vs PtHard", {HistType::kTH1F, {{20, 0, 5}}}},
119121
{"hZvtxSelected", "Z vertex position;Z_{vtx};entries", {HistType::kTH1F, {{80, -20, 20}}}},
120122
{"hPtTrack", "Track p_{T};p_{T};entries", {HistType::kTH1F, {{200, 0, 200}}}},
121123
{"hEtaTrack", "Track #eta;#eta;entries", {HistType::kTH1F, {{100, -1.0, 1.0}}}},
@@ -243,6 +245,7 @@ struct JetHadronRecoil {
243245
registry.fill(HIST("hNtrig"), 1.5, weight);
244246
registry.fill(HIST("hSigEventTriggers"), nTT, weight);
245247
registry.fill(HIST("hRhoSignal"), rho, weight);
248+
registry.fill(HIST("hSignalTriggersPtHard"), ptTT / pTHat, weight);
246249
}
247250
if (!isSigCol) {
248251
registry.fill(HIST("hNtrig"), 0.5, weight);
@@ -251,6 +254,7 @@ struct JetHadronRecoil {
251254
for (double shift = 0.0; shift <= 2.0; shift += 0.1) {
252255
registry.fill(HIST("hRhoReferenceShift"), rho + shift, shift, weight);
253256
}
257+
registry.fill(HIST("hReferenceTriggersPtHard"), ptTT / pTHat, weight);
254258
}
255259
}
256260

0 commit comments

Comments
 (0)