Skip to content

Commit e4be726

Browse files
authored
Update HistogramsLibrary.cxx
1 parent a751373 commit e4be726

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
@@ -1194,6 +1194,18 @@ void o2::aod::dqhistograms::DefineHistograms(HistogramManager* hm, const char* h
11941194
hm->AddHistogram(histClass, "Mass_Pt_cosThetaCS_phiCS", "", 4, varspTCS, binspT, xminpT, xmaxpT, 0, -1, kFALSE);
11951195
hm->AddHistogram(histClass, "Mass_y_cosThetaCS_phiCS", "", 4, varsrapCS, binsy, xminy, xmaxy, 0, -1, kFALSE);
11961196
}
1197+
if (subGroupStr.Contains("dimuon-polarization-pp")) {
1198+
int varspTPP[4] = {VarManager::kMass, VarManager::kPt, VarManager::kCosThetaPP, VarManager::kPhiPP};
1199+
int varsrapPP[4] = {VarManager::kMass, VarManager::kRap, VarManager::kCosThetaPP, VarManager::kPhiPP};
1200+
int binspT[4] = {100, 20, 20, 20};
1201+
int binsy[4] = {100, 10, 20, 20};
1202+
double xminpT[4] = {1., 0., -1., -3.14};
1203+
double xmaxpT[4] = {5., 20., 1., +3.14};
1204+
double xminy[4] = {1., 2.5, -1., -3.14};
1205+
double xmaxy[4] = {5., 4.0, 1., +3.14};
1206+
hm->AddHistogram(histClass, "Mass_Pt_cosThetaPP_phiPP", "", 4, varspTPP, binspT, xminpT, xmaxpT, 0, -1, kFALSE);
1207+
hm->AddHistogram(histClass, "Mass_y_cosThetaPP_phiPP", "", 4, varsrapPP, binsy, xminy, xmaxy, 0, -1, kFALSE);
1208+
}
11971209
if (subGroupStr.Contains("upsilon-polarization-he")) {
11981210
int varspTHE[4] = {VarManager::kMass, VarManager::kPt, VarManager::kCosThetaHE, VarManager::kPhiHE};
11991211
int varsrapHE[4] = {VarManager::kMass, VarManager::kRap, VarManager::kCosThetaHE, VarManager::kPhiHE};

0 commit comments

Comments
 (0)