Skip to content

Commit f129e29

Browse files
[PWGDQ] Including a histogram for low mass polarization in Production frame (#11387)
1 parent 4a4ce3d commit f129e29

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

PWGDQ/Core/HistogramsLibrary.cxx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1249,6 +1249,18 @@ void o2::aod::dqhistograms::DefineHistograms(HistogramManager* hm, const char* h
12491249
hm->AddHistogram(histClass, "Mass_Pt_cosThetaPP_phiPP", "", 4, varspTPP, binspT, xminpT, xmaxpT, 0, -1, kFALSE);
12501250
hm->AddHistogram(histClass, "Mass_y_cosThetaPP_phiPP", "", 4, varsrapPP, binsy, xminy, xmaxy, 0, -1, kFALSE);
12511251
}
1252+
if (subGroupStr.Contains("dimuon-polarization-lowmass-pp")) {
1253+
int varspTPP[4] = {VarManager::kMass, VarManager::kPt, VarManager::kCosThetaPP, VarManager::kPhiPP};
1254+
int varsrapPP[4] = {VarManager::kMass, VarManager::kRap, VarManager::kCosThetaPP, VarManager::kPhiPP};
1255+
int binspT[4] = {100, 20, 20, 20};
1256+
int binsy[4] = {100, 10, 20, 20};
1257+
double xminpT[4] = {0.2, 0., -1., -3.14};
1258+
double xmaxpT[4] = {1.5, 20., 1., +3.14};
1259+
double xminy[4] = {0.2, 2.5, -1., -3.14};
1260+
double xmaxy[4] = {1.5, 4.0, 1., +3.14};
1261+
hm->AddHistogram(histClass, "Mass_Pt_cosThetaPP_phiPP", "", 4, varspTPP, binspT, xminpT, xmaxpT, 0, -1, kFALSE);
1262+
hm->AddHistogram(histClass, "Mass_y_cosThetaPP_phiPP", "", 4, varsrapPP, binsy, xminy, xmaxy, 0, -1, kFALSE);
1263+
}
12521264
if (subGroupStr.Contains("upsilon-polarization-he")) {
12531265
int varspTHE[4] = {VarManager::kMass, VarManager::kPt, VarManager::kCosThetaHE, VarManager::kPhiHE};
12541266
int varsrapHE[4] = {VarManager::kMass, VarManager::kRap, VarManager::kCosThetaHE, VarManager::kPhiHE};

0 commit comments

Comments
 (0)