Skip to content

Commit

Permalink
[PWGCF] corrected proton anti-protn vs. FT0M profiles added (#9629)
Browse files Browse the repository at this point in the history
  • Loading branch information
SwatiSaha-1997 authored Jan 30, 2025
1 parent 6662ccb commit 2017a12
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,9 @@ struct NetprotonCumulantsMc {
histos.add("hrecProfileTotalProton", "Reconstructed total proton number vs. centrality", kTProfile, {centAxis});
histos.add("hrecProfileProton", "Reconstructed proton number vs. centrality", kTProfile, {centAxis});
histos.add("hrecProfileAntiproton", "Reconstructed antiproton number vs. centrality", kTProfile, {centAxis});
histos.add("hCorrProfileTotalProton", "Eff. Corrected total proton number vs. centrality", kTProfile, {centAxis});
histos.add("hCorrProfileProton", "Eff. Corrected proton number vs. centrality", kTProfile, {centAxis});
histos.add("hCorrProfileAntiproton", "Eff. Corrected antiproton number vs. centrality", kTProfile, {centAxis});

if (cfgIsCalculateCentral) {
// uncorrected
Expand Down Expand Up @@ -1131,6 +1134,9 @@ struct NetprotonCumulantsMc {
histos.fill(HIST("hrecProfileTotalProton"), cent, (nProt + nAntiprot));
histos.fill(HIST("hrecProfileProton"), cent, nProt);
histos.fill(HIST("hrecProfileAntiproton"), cent, nAntiprot);
histos.fill(HIST("hCorrProfileTotalProton"), cent, (powerEffProt[1] + powerEffAntiprot[1]));
histos.fill(HIST("hCorrProfileProton"), cent, powerEffProt[1]);
histos.fill(HIST("hCorrProfileAntiproton"), cent, powerEffAntiprot[1]);
recEbyeCollisions(cent, netProt, nProt, nAntiprot);

// Calculating q_{r,s} as required
Expand Down

0 comments on commit 2017a12

Please sign in to comment.