Skip to content
Snippets Groups Projects
Commit 902dde17 authored by Pascal Raisig's avatar Pascal Raisig
Browse files

Add trd timeshift calibration to common unpacking macros

Additionally the parameter git hash was updated, such that it matches the latest version.
parent 1aa3cd83
No related branches found
No related tags found
No related merge requests found
set(PARAMETER_VERSION 2c5fffe5eef95db9b40f11e1d569f4740ba40805)
set(PARAMETER_VERSION 884ac67bbc782e6862fccdeb413f8b11b83124ba)
set(PARAMETER_SRC_URL "https://git.cbm.gsi.de/CbmSoft/cbmroot_parameter.git")
......
......@@ -68,6 +68,12 @@ void unpack_tsa_mcbm(TString inFile = "",
parFileList->Add(
new TObjString(Form("%s.%s.par", paramFilesTrd.Data(), parIt.data())));
}
// Add timeshift calibration, currently only available for run 831 others to come
if (uRunId == 831)
parFileList->Add(new TObjString(Form(
"%s/parameters/trd/mcbm2020_special/CbmMcbm2020TrdTshiftPar_run%d.par",
srcDir.Data(),
uRunId)));
}
TString paramFileTof = paramDir + "mTofPar.par";
......
......@@ -96,6 +96,12 @@ void unpack_tsa_mcbm_kronos(UInt_t uRunIdx = 99999,
parFileList->Add(
new TObjString(Form("%s.%s.par", paramFilesTrd.Data(), parIt.data())));
}
// Add timeshift calibration, currently only available for run 831 others to come
if (uRunId == 831)
parFileList->Add(new TObjString(Form(
"%s/parameters/trd/mcbm2020_special/CbmMcbm2020TrdTshiftPar_run%d.par",
srcDir.Data(),
uRunId)));
}
TString paramFileTof = paramDir + "mTofPar.par";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment