@@ -332,11 +332,11 @@ class CMVGeneratorDevice : public o2::framework::Task
332332 const float mAmplitude {5 .f };
333333 const float mNoise {1 .f };
334334 std::mt19937 mRng {};
335- const std::string mInputFileName {}; // /< CMV ROOT file to use as template ("" = synthetic mode)
336- const long long mInputEntry {0 }; // /< tree entry (TF) used as template
337- bool mUseInputFile {false }; // /< true once a template has been loaded
338- std::vector<std::vector<float >> mBaseCMVFloat ; // /< decoded template CMV values [iCRU][timeBin] (noise>0 path), aligned to mCRUs
339- std::vector<std::vector<uint16_t >> mBaseCMVEncoded ; // /< pre-encoded template output [iCRU][timeBin] (noise==0 path), aligned to mCRUs
335+ const std::string mInputFileName {}; // /< CMV ROOT file to use as template ("" = synthetic mode)
336+ const long long mInputEntry {0 }; // /< tree entry (TF) used as template
337+ bool mUseInputFile {false }; // /< true once a template has been loaded
338+ std::vector<std::vector<float >> mBaseCMVFloat ; // /< decoded template CMV values [iCRU][timeBin] (noise>0 path), aligned to mCRUs
339+ std::vector<std::vector<uint16_t >> mBaseCMVEncoded ; // /< pre-encoded template output [iCRU][timeBin] (noise==0 path), aligned to mCRUs
340340 std::chrono::high_resolution_clock::time_point mTimer100TFs {};
341341 std::chrono::high_resolution_clock::time_point mLastTFTime {};
342342 bool mWriteDebug {false };
@@ -346,20 +346,20 @@ class CMVGeneratorDevice : public o2::framework::Task
346346
347347// ─────────────────────────────────────────────────────────────────────────────
348348DataProcessorSpec generateCMVsCRU (const std::vector<uint32_t >& crus,
349- const std::unordered_set<uint32_t >& delayCRUs,
350- unsigned int maxTFs,
351- bool delay,
352- int delayTime,
353- int delayEveryN,
354- int delayTimeCRUs,
355- int dropTFsRandom,
356- const std::vector<int >& rangeTFsDrop,
357- float tfLength,
358- float amplitude,
359- float noise,
360- int seed,
361- const std::string& inputFile,
362- long long inputEntry)
349+ const std::unordered_set<uint32_t >& delayCRUs,
350+ unsigned int maxTFs,
351+ bool delay,
352+ int delayTime,
353+ int delayEveryN,
354+ int delayTimeCRUs,
355+ int dropTFsRandom,
356+ const std::vector<int >& rangeTFsDrop,
357+ float tfLength,
358+ float amplitude,
359+ float noise,
360+ int seed,
361+ const std::string& inputFile,
362+ long long inputEntry)
363363{
364364 std::vector<OutputSpec> outputSpecs;
365365 outputSpecs.reserve (crus.size () * 2 );
0 commit comments