11 : kLogCategory_(log_category) {
29 const char* name_prefix,
30 const char* title_prefix) {
34 TString
name = TString::Format(
"%s_occ_zr%s", name_prefix, name_suffix.Data());
35 TString
title = TString::Format(
"%s ZR Occupancy :%s;|Z| [cm];R [cm]", title_prefix, title_suffix.Data());
42 std::vector<Double_t> xbins_vector;
43 for (Double_t
i = station1_xmin - 1;
i < station2_xmax + 1;
i += 0.25) {
44 if (
i > station1_xmax + 1 and
i < station2_xmin - 1)
46 xbins_vector.push_back(
i);
49 Int_t nbinsx = xbins_vector.size() - 1;
55 auto hist =
new TH2F(
name,
title, nbinsx, &xbins_vector[0], nbinsy, ylow, yup);