Skip to content

Commit 471d4f0

Browse files
Histogram for Upsilon-polarization is updated
The range of phi distribution is updated to 0 to 2 \pi The histogram as a function of rapidity is deleted for now to reduce memory consuption.
1 parent 41e4ba1 commit 471d4f0

File tree

1 file changed

+4
-14
lines changed

1 file changed

+4
-14
lines changed

PWGDQ/Core/HistogramsLibrary.cxx

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1380,27 +1380,17 @@ void o2::aod::dqhistograms::DefineHistograms(HistogramManager* hm, const char* h
13801380
}
13811381
if (subGroupStr.Contains("upsilon-polarization-he")) {
13821382
int varspTHE[4] = {VarManager::kMass, VarManager::kPt, VarManager::kCosThetaHE, VarManager::kPhiHE};
1383-
int varsrapHE[4] = {VarManager::kMass, VarManager::kRap, VarManager::kCosThetaHE, VarManager::kPhiHE};
13841383
int binspT[4] = {100, 20, 20, 20};
1385-
int binsy[4] = {100, 10, 20, 20};
1386-
double xminpT[4] = {1., 0., -1., -3.14};
1387-
double xmaxpT[4] = {15., 20., 1., +3.14};
1388-
double xminy[4] = {1., 2.5, -1., -3.14};
1389-
double xmaxy[4] = {15., 4.0, 1., +3.14};
1384+
double xminpT[4] = {1., 0., -1., 0.};
1385+
double xmaxpT[4] = {15., 20., 1., 2. * o2::constants::math::PI};
13901386
hm->AddHistogram(histClass, "Mass_Pt_cosThetaHE_phiHE", "", 4, varspTHE, binspT, xminpT, xmaxpT, 0, -1, kFALSE);
1391-
hm->AddHistogram(histClass, "Mass_y_cosThetaHE_phiHE", "", 4, varsrapHE, binsy, xminy, xmaxy, 0, -1, kFALSE);
13921387
}
13931388
if (subGroupStr.Contains("upsilon-polarization-cs")) {
13941389
int varspTCS[4] = {VarManager::kMass, VarManager::kPt, VarManager::kCosThetaCS, VarManager::kPhiCS};
1395-
int varsrapCS[4] = {VarManager::kMass, VarManager::kRap, VarManager::kCosThetaCS, VarManager::kPhiCS};
13961390
int binspT[4] = {100, 20, 20, 20};
1397-
int binsy[4] = {100, 10, 20, 20};
1398-
double xminpT[4] = {1., 0., -1., -3.14};
1399-
double xmaxpT[4] = {15., 20., 1., +3.14};
1400-
double xminy[4] = {1., 2.5, -1., -3.14};
1401-
double xmaxy[4] = {15., 4.0, 1., +3.14};
1391+
double xminpT[4] = {1., 0., -1., 0.};
1392+
double xmaxpT[4] = {15., 20., 1., 2. * o2::constants::math::PI};
14021393
hm->AddHistogram(histClass, "Mass_Pt_cosThetaCS_phiCS", "", 4, varspTCS, binspT, xminpT, xmaxpT, 0, -1, kFALSE);
1403-
hm->AddHistogram(histClass, "Mass_y_cosThetaCS_phiCS", "", 4, varsrapCS, binsy, xminy, xmaxy, 0, -1, kFALSE);
14041394
}
14051395
if (subGroupStr.Contains("dimuon-polarization-vp")) {
14061396
int varspTVP[4] = {VarManager::kMass, VarManager::kPt, VarManager::kCosPhiVP, VarManager::kPhiVP};

0 commit comments

Comments
 (0)