Skip to content

Commit 0939d96

Browse files
sahilupadhyaya92Sahil Upadhyayaalibuild
authored
[PWGDQ] Add 1D histograms for Drell-Yan studies (#12190)
Co-authored-by: Sahil Upadhyaya <upadhyay@cern.ch> Co-authored-by: ALICE Action Bot <alibuild@cern.ch>
1 parent 48c6f1e commit 0939d96

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
@@ -1970,6 +1970,13 @@ void o2::aod::dqhistograms::DefineHistograms(HistogramManager* hm, const char* h
19701970
hm->AddHistogram(histClass, "Mass_Pt", "", false, 500, 0.0, 5.0, VarManager::kMassDau, 200, 0.0, 20.0, VarManager::kPt);
19711971
hm->AddHistogram(histClass, "Rapidity", "", false, 400, -4.0, 4.0, VarManager::kRap);
19721972
}
1973+
1974+
if (subGroupStr.Contains("DY-dimuon")) {
1975+
hm->AddHistogram(histClass, "DY_mass", "", false, 5000, 0.0, 50.0, VarManager::kMass); // 10 MeV mass res
1976+
hm->AddHistogram(histClass, "DY_pT", "", false, 2000, 0.0, 100.0, VarManager::kPt); // 50 MeV pT res
1977+
hm->AddHistogram(histClass, "DY_y", "", false, 20, 2.0, 4.0, VarManager::kRap);
1978+
hm->AddHistogram(histClass, "DY_phi", "", false, 180, constants::math::PI, 2 * constants::math::PI, VarManager::kPhi);
1979+
}
19731980
}
19741981

19751982
//__________________________________________________________________

0 commit comments

Comments
 (0)