Skip to content

Commit 9610b1f

Browse files
authored
Add files via upload
1 parent 22e2a82 commit 9610b1f

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

PWGDQ/Core/HistogramsLibrary.cxx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -992,14 +992,24 @@ void o2::aod::dqhistograms::DefineHistograms(HistogramManager* hm, const char* h
992992
hm->AddHistogram(histClass, "Coschi_randomPhi_toward", "", false, 25, coschiBins, VarManager::kMCCosChi_randomPhi_toward, 0, nullptr, -1, 0, nullptr, -1, "", "", "", -1, VarManager::kMCWeight_randomPhi_toward);
993993
hm->AddHistogram(histClass, "Coschi_randomPhi_away", "", false, 25, coschiBins, VarManager::kMCCosChi_randomPhi_away, 0, nullptr, -1, 0, nullptr, -1, "", "", "", -1, VarManager::kMCWeight_randomPhi_away);
994994
}
995-
996995
if (!groupStr.CompareTo("energy-correlator-unfolding")) {
997996
double coschiBins[26];
998997
for (int i = 0; i < 26; i++) {
999998
coschiBins[i] = -1.0 + 0.08 * i;
1000999
}
10011000
hm->AddHistogram(histClass, "Coschi_unfolding", "", false, 25, coschiBins, VarManager::kMCCosChi_rec, 25, coschiBins, VarManager::kMCCosChi_gen);
10021001
}
1002+
if (!groupStr.CompareTo("polarization-pseudoproper-gen")) {
1003+
int varspTHE[3] = {VarManager::kMCPt, VarManager::kMCCosThetaHE, VarManager::kMCVertexingTauxyProjected};
1004+
int varspTCS[3] = {VarManager::kMCPt, VarManager::kMCCosThetaCS, VarManager::kMCVertexingTauxyProjected};
1005+
int varspTRM[3] = {VarManager::kMCPt, VarManager::kMCCosThetaRM, VarManager::kMCVertexingTauxyProjected};
1006+
int bins[3] = {20, 20, 1000};
1007+
double xmin[3] = {0., -1., -0.5};
1008+
double xmax[3] = {20., 1., 0.5};
1009+
hm->AddHistogram(histClass, "Pt_cosThetaHE_Tauxy", "", 3, varspTHE, bins, xmin, xmax, 0, -1, kFALSE);
1010+
hm->AddHistogram(histClass, "Pt_cosThetaCS_Tauxy", "", 3, varspTCS, bins, xmin, xmax, 0, -1, kFALSE);
1011+
hm->AddHistogram(histClass, "Pt_cosThetaRM_Tauxy", "", 3, varspTRM, bins, xmin, xmax, 0, -1, kFALSE);
1012+
}
10031013
if (!groupStr.CompareTo("pair")) {
10041014
if (subGroupStr.Contains("cepf")) {
10051015
hm->AddHistogram(histClass, "Mass", "", false, 300, 0.0, 12.0, VarManager::kMass);

0 commit comments

Comments
 (0)