Skip to content
Snippets Groups Projects
Commit 45289fce authored by Dominik Smith's avatar Dominik Smith Committed by Pierre-Alain Loizeau
Browse files

CbmTaskUnpack(): Added data format assert() statement for MUCH.

parent 56d7c5ad
No related branches found
No related tags found
1 merge request!866Much Unpacker in Algo namespace
Pipeline #18030 passed
......@@ -123,11 +123,11 @@ void CbmTaskUnpack::Exec(Option_t*)
const auto algoIt = fAlgoMuch.find(equipmentId);
assert(algoIt != fAlgoMuch.end());
// The current algorithm works for the MUCH data format version XXXX (insert) used in XXXX.
// The current algorithm works for the MUCH data format version 0x20 used in 2021.
// Other versions are not yet supported.
// In the future, different data formats will be supported by instantiating different
// algorithms depending on the version.
// assert(timeslice->descriptor(comp, 0).sys_ver == 0x20); // set for MUCH
assert(timeslice->descriptor(comp, 0).sys_ver == 0x20);
// --- Microslice loop
numMsInComp = timeslice->num_microslices(comp);
......
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