Skip to content
Snippets Groups Projects
Commit df656908 authored by Pierre-Alain Loizeau's avatar Pierre-Alain Loizeau
Browse files

mCBM 2018-2019: in unpacking macro, switch the mMUCH par file depending on the run ID

git-svn-id: https://subversion.gsi.de/cbmsoft/cbmroot/trunk@14696 5a1b234a-d7ce-0410-9a93-fd649a8fa65c
parent a591c6d1
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,12 @@ void unpack_tsa_mcbm(TString inFile = "", UInt_t uRunId = 0, UInt_t nrEvents=0,
parFileList->Add(parStsFileName);
TString paramFileMuch = paramDir + "mMuchPar.par";
/// Special parameter files for runs 80-141 (16_23_28March19) and 142-182 (30March19)
if( 142 < uRunId )
paramFileMuch = paramDir + "mMuchPar_30March19.par";
else if( 79 < uRunId )
paramFileMuch = paramDir + "mMuchPar_16_23_28March19.par";
TObjString* parMuchFileName = new TObjString(paramFileMuch);
parFileList->Add(parMuchFileName);
......
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