Skip to content

Commit 4892216

Browse files
prottayCMTProttay Das
andauthored
[PWGLF] added additional correction histograms for v2 (AliceO2Group#9994)
Co-authored-by: Prottay Das <[email protected]>
1 parent 763846a commit 4892216

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

PWGLF/Tasks/Strangeness/lambdapolsp.cxx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,10 @@ struct lambdapolsp {
189189
histos.add("hpy2Ty1Ax1Cvscentpteta", "hpy2Ty1Ax1Cvscentpteta", HistType::kTHnSparseF, {centAxis, thnAxispT, configetaAxis, spAxis}, true);
190190
histos.add("hpx1Ax1Cvscentpteta", "hpx1Ax1Cvscentpteta", HistType::kTHnSparseF, {centAxis, thnAxispT, configetaAxis, spAxis}, true);
191191
histos.add("hpy1Ay1Cvscentpteta", "hpy1Ay1Cvscentpteta", HistType::kTHnSparseF, {centAxis, thnAxispT, configetaAxis, spAxis}, true);
192+
histos.add("hpx1Avscentpteta", "hpx1Avscentpteta", HistType::kTHnSparseF, {centAxis, thnAxispT, configetaAxis, spAxis}, true);
193+
histos.add("hpx1Cvscentpteta", "hpx1Cvscentpteta", HistType::kTHnSparseF, {centAxis, thnAxispT, configetaAxis, spAxis}, true);
194+
histos.add("hpy1Avscentpteta", "hpy1Avscentpteta", HistType::kTHnSparseF, {centAxis, thnAxispT, configetaAxis, spAxis}, true);
195+
histos.add("hpy1Cvscentpteta", "hpy1Cvscentpteta", HistType::kTHnSparseF, {centAxis, thnAxispT, configetaAxis, spAxis}, true);
192196

193197
histos.add("hpx2Tx1Avscentpteta", "hpx2Tx1Avscentpteta", HistType::kTHnSparseF, {centAxis, thnAxispT, configetaAxis, spAxis}, true);
194198
histos.add("hpx2Tx1Cvscentpteta", "hpx2Tx1Cvscentpteta", HistType::kTHnSparseF, {centAxis, thnAxispT, configetaAxis, spAxis}, true);
@@ -727,6 +731,10 @@ struct lambdapolsp {
727731
auto x1Cy1A = modqxZDCC * modqyZDCA;
728732

729733
// detector acceptance corrections to match v2{ZDC}
734+
auto x1A = modqxZDCA;
735+
auto x1C = modqxZDCC;
736+
auto y1A = modqyZDCA;
737+
auto y1C = modqyZDCC;
730738
auto x2T = TMath::Cos(2 * GetPhiInRange(track.phi()));
731739
auto y2T = TMath::Sin(2 * GetPhiInRange(track.phi()));
732740
auto x2Tx1A = TMath::Cos(2 * GetPhiInRange(track.phi())) * modqxZDCA;
@@ -775,6 +783,10 @@ struct lambdapolsp {
775783
histos.fill(HIST("hpy1Ay1Cvscentpteta"), centrality, track.pt(), track.eta(), y1Ay1C);
776784
histos.fill(HIST("hpx1Ay1Cvscentpteta"), centrality, track.pt(), track.eta(), x1Ay1C);
777785
histos.fill(HIST("hpy1Ax1Cvscentpteta"), centrality, track.pt(), track.eta(), x1Cy1A);
786+
histos.fill(HIST("hpx1Avscentpteta"), centrality, track.pt(), track.eta(), x1A);
787+
histos.fill(HIST("hpx1Cvscentpteta"), centrality, track.pt(), track.eta(), x1C);
788+
histos.fill(HIST("hpy1Avscentpteta"), centrality, track.pt(), track.eta(), y1A);
789+
histos.fill(HIST("hpy1Cvscentpteta"), centrality, track.pt(), track.eta(), y1C);
778790

779791
/*} else {
780792
histos.fill(HIST("hpuxQxpvscentptetaneg"), centrality, track.pt(), track.eta(), uxQxp);

0 commit comments

Comments
 (0)