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