Skip to content

Commit e26f3d2

Browse files
[PWGDQ] Add CosTheta and Phi distribution histograms for Upsilon (AliceO2Group#10158)
1 parent 365e07e commit e26f3d2

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

PWGDQ/Core/HistogramsLibrary.cxx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1124,6 +1124,30 @@ void o2::aod::dqhistograms::DefineHistograms(HistogramManager* hm, const char* h
11241124
hm->AddHistogram(histClass, "Mass_Pt_cosThetaCS_phiCS", "", 4, varspTCS, binspT, xminpT, xmaxpT, 0, -1, kFALSE);
11251125
hm->AddHistogram(histClass, "Mass_y_cosThetaCS_phiCS", "", 4, varsrapCS, binsy, xminy, xmaxy, 0, -1, kFALSE);
11261126
}
1127+
if (subGroupStr.Contains("upsilon-polarization-he")) {
1128+
int varspTHE[4] = {VarManager::kMass, VarManager::kPt, VarManager::kCosThetaHE, VarManager::kPhiHE};
1129+
int varsrapHE[4] = {VarManager::kMass, VarManager::kRap, VarManager::kCosThetaHE, VarManager::kPhiHE};
1130+
int binspT[4] = {100, 20, 20, 20};
1131+
int binsy[4] = {100, 10, 20, 20};
1132+
double xminpT[4] = {1., 0., -1., -3.14};
1133+
double xmaxpT[4] = {15., 20., 1., +3.14};
1134+
double xminy[4] = {1., 2.5, -1., -3.14};
1135+
double xmaxy[4] = {15., 4.0, 1., +3.14};
1136+
hm->AddHistogram(histClass, "Mass_Pt_cosThetaHE_phiHE", "", 4, varspTHE, binspT, xminpT, xmaxpT, 0, -1, kFALSE);
1137+
hm->AddHistogram(histClass, "Mass_y_cosThetaHE_phiHE", "", 4, varsrapHE, binsy, xminy, xmaxy, 0, -1, kFALSE);
1138+
}
1139+
if (subGroupStr.Contains("upsilon-polarization-cs")) {
1140+
int varspTCS[4] = {VarManager::kMass, VarManager::kPt, VarManager::kCosThetaCS, VarManager::kPhiCS};
1141+
int varsrapCS[4] = {VarManager::kMass, VarManager::kRap, VarManager::kCosThetaCS, VarManager::kPhiCS};
1142+
int binspT[4] = {100, 20, 20, 20};
1143+
int binsy[4] = {100, 10, 20, 20};
1144+
double xminpT[4] = {1., 0., -1., -3.14};
1145+
double xmaxpT[4] = {15., 20., 1., +3.14};
1146+
double xminy[4] = {1., 2.5, -1., -3.14};
1147+
double xmaxy[4] = {15., 4.0, 1., +3.14};
1148+
hm->AddHistogram(histClass, "Mass_Pt_cosThetaCS_phiCS", "", 4, varspTCS, binspT, xminpT, xmaxpT, 0, -1, kFALSE);
1149+
hm->AddHistogram(histClass, "Mass_y_cosThetaCS_phiCS", "", 4, varsrapCS, binsy, xminy, xmaxy, 0, -1, kFALSE);
1150+
}
11271151
if (subGroupStr.Contains("dimuon-polarization-vp")) {
11281152
int varspTVP[4] = {VarManager::kMass, VarManager::kPt, VarManager::kCosPhiVP, VarManager::kPhiVP};
11291153
int varsrapVP[4] = {VarManager::kMass, VarManager::kRap, VarManager::kCosPhiVP, VarManager::kPhiVP};

0 commit comments

Comments
 (0)