Skip to content

Commit 765a2e0

Browse files
authored
[PWGJE] Rho spectra in signal and reference events (#10090)
1 parent 984e93f commit 765a2e0

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
@@ -117,6 +117,8 @@ struct JetHadronRecoil {
117117
{"hDeltaRPart", "Particle #DeltaR;#DeltaR;#frac{1}{N_{jets}}#frac{dN_{jets}}{d#DeltaR}", {HistType::kTH1F, {{80, 0.0, 0.24}}}},
118118
{"hDeltaRpT", "jet p_{T} vs #DeltaR;p_{T,jet};#DeltaR", {HistType::kTH2F, {{300, -100, 200}, {80, 0.0, 0.24}}}},
119119
{"hDeltaRpTPart", "Particle jet p_{T} vs #DeltaR;p_{T,jet};#DeltaR", {HistType::kTH2F, {{200, 0, 200}, {80, 0.0, 0.24}}}},
120+
{"hRhoSignal", "Signal Rho bkg;#rho;entries", {HistType::kTH1F, {{220, 0, 220}}}},
121+
{"hRhoReference", "Reference Rho bkg;#rho;entries", {HistType::kTH1F, {{220, 0, 220}}}},
120122
{"hDeltaRSignal", "#DeltaR;#DeltaR;#frac{dN_{jets}}{d#DeltaR}", {HistType::kTH1F, {{80, 0.0, 0.24}}}},
121123
{"hDeltaRSignalPart", "Particle #DeltaR;#DeltaR;#frac{1}{N_{jets}}#frac{dN_{jets}}{d#DeltaR}", {HistType::kTH1F, {{80, 0.0, 0.24}}}},
122124
{"hDeltaRpTSignal", "jet p_{T} vs #DeltaR;p_{T,jet};#DeltaR", {HistType::kTH2F, {{300, -100, 200}, {80, 0.0, 0.24}}}},
@@ -197,10 +199,12 @@ struct JetHadronRecoil {
197199
if (isSigCol) {
198200
registry.fill(HIST("hNtrig"), 1.5, weight);
199201
registry.fill(HIST("hSigEventTriggers"), nTT, weight);
202+
registry.fill(HIST("hRhoSignal"), rho, weight);
200203
}
201204
if (!isSigCol) {
202205
registry.fill(HIST("hNtrig"), 0.5, weight);
203206
registry.fill(HIST("hRefEventTriggers"), nTT, weight);
207+
registry.fill(HIST("hRhoReference"), rho, weight);
204208
}
205209
}
206210

0 commit comments

Comments
 (0)