Skip to content

Commit 27d2bae

Browse files
author
Sahil Upadhyaya
committed
Adding histograms for Drell-Yan studies
1 parent d15f2f6 commit 27d2bae

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

PWGDQ/Core/HistogramsLibrary.cxx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1966,6 +1966,13 @@ void o2::aod::dqhistograms::DefineHistograms(HistogramManager* hm, const char* h
19661966
hm->AddHistogram(histClass, "Mass_Pt", "", false, 500, 0.0, 5.0, VarManager::kMassDau, 200, 0.0, 20.0, VarManager::kPt);
19671967
hm->AddHistogram(histClass, "Rapidity", "", false, 400, -4.0, 4.0, VarManager::kRap);
19681968
}
1969+
1970+
if (subGroupStr.Contains("DY-dimuon")) {
1971+
hm->AddHistogram(histClass, "DY_mass", "", false, 5000, 0.0, 50.0, VarManager::kMass); // 10 MeV mass res
1972+
hm->AddHistogram(histClass, "DY_pT", "", false, 2000, 0.0, 100.0, VarManager::kPt); // 50 MeV pT res
1973+
hm->AddHistogram(histClass, "DY_y", "", false, 20, 2.0, 4.0, VarManager::kRap);
1974+
hm->AddHistogram(histClass, "DY_phi", "", false, 180, constants::math::PI, 2 * constants::math::PI, VarManager::kPhi);
1975+
}
19691976
}
19701977

19711978
//__________________________________________________________________

0 commit comments

Comments
 (0)