Skip to content
Snippets Groups Projects

mMuCh Hit reconstruction and including mMuCh in mcbm L1 macro

Merged Vikas Singhal requested to merge v.singhal/cbmroot:master into master
Files
12
@@ -39,14 +39,17 @@ namespace cbm
/// Nickel runs: 2350 - 2397 = 23/05/2022 - 25/05/2022 (Lambda Benchmark but mTOF troubles)
sSetupName = "mcbm_beam_2022_05_23_nickel";
}
else if (2454 <= ulRunId && ulRunId <= 2610) {
else if (2454 <= ulRunId && ulRunId <= 2497) {
/// Lambda Benchmark Gold runs: 2454 - 2497 = 16/06/2022 - 18/06/2022
sSetupName = "mcbm_beam_2022_06_16_gold";
}
/// High Rate Gold runs with GEMs in Acceptance: 2498 - 2610 = 18/06/2022 - 20/06/2022
else if (2610 < ulRunId) {
else if (2498 <= ulRunId && ulRunId <= 2610) {
/// High Rate Gold runs with GEMs in Acceptance: 2498 - 2610 = 18/06/2022 - 20/06/2022
sSetupName = "mcbm_beam_2022_06_18_gold";
}
else if (2611 < ulRunId) {
/// Future runs, exception there to force implementation and support from users side
throw(std::invalid_argument("RunId bigger than latest run mapped (2610, mCBM 2022)! Please complete the map!"));
throw(std::invalid_argument("RunId bigger than latest run mapped (2611, mCBM 2022)! Please complete the map!"));
}
return sSetupName;
Loading