Skip to content

Commit fdfbe57

Browse files
committed
Add correlation centrality vs FT0M*
1 parent 511708c commit fdfbe57

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

PWGJE/Tasks/recoilJets.cxx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -505,6 +505,10 @@ struct RecoilJets {
505505
spectra.add(Form("h%s_Recoil_JetPt_Corr_TTSig", centAxis.label),
506506
Form("Events w. TT_{Sig}: %s & #it{p}_{T} of recoil jets", centAxis.label),
507507
kTH2F, {{centAxis.axis, centAxis.axisName}, jetPTcorr}, hist.sumw2);
508+
509+
spectra.add(Form("h%s_FT0MStar", centAxis.label),
510+
Form("Correlation of %s vs. FT0M^{*}", centAxis.label),
511+
kTH2F, {{centAxis.axis, centAxis.axisName}, scaledFT0M}, hist.sumw2);
508512
}
509513
}
510514

@@ -1268,6 +1272,10 @@ struct RecoilJets {
12681272
spectra.fill(HIST("hCentFT0C"), centFT0C, weight);
12691273
spectra.fill(HIST("hCentFT0M"), centFT0M, weight);
12701274

1275+
// Correlation: centrality vs FT0M*
1276+
spectra.fill(HIST("hCentFT0C_FT0MStar"), centFT0C, scaledFT0M, weight);
1277+
spectra.fill(HIST("hCentFT0M_FT0MStar"), centFT0M, scaledFT0M, weight);
1278+
12711279
// Z vertex position vs EA / centrality
12721280
spectra.fill(HIST("hScaledFT0C_vertexZ"), scaledFT0C, vertexZ, weight);
12731281
spectra.fill(HIST("hScaledFT0M_vertexZ"), scaledFT0M, vertexZ, weight);

0 commit comments

Comments
 (0)