You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ILOG(Error) << "Failed cast for " << name << " beautify!" << ENDM;
488
488
return;
489
489
}
490
490
auto isCycle = name.find("Cycle") != std::string::npos;
491
+
auto isHigh = name.find("high") != std::string::npos;
492
+
auto isLow = name.find("low") != std::string::npos;
493
+
auto isOcc = name.ends_with("Occ");
494
+
auto isPt = name.ends_with("Pt");
491
495
auto msg = newTPaveText(0.6, 0.6, 0.88, 0.88, "NDC;NB");
492
-
h->SetTitle(Form("K0s invariant mass (integrated over #it{p}_{T} and occupancy, %s);K0s mass (GeV/c^{2});entries", (isCycle) ? "current cycle" : "integrated"));
496
+
if (!isLow && !isHigh) {
497
+
h->SetTitle(Form("K0s invariant mass (integrated over #it{p}_{T} and occupancy, %s);K0s mass (GeV/c^{2});entries", (isCycle) ? "last cycle" : "integrated"));
498
+
} else {
499
+
h->SetTitle(Form("K0s invariant mass (integrated over%s#it{p}_{T} and%soccupancy, last cycle);K0s mass (GeV/c^{2});entries",
0 commit comments