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

In STS unpack config, fix flag disabling binning FW in legacy unpckr

parent 2c9214e3
No related branches found
No related tags found
1 merge request!1090Enable mCBM 2022 real data L1 reco for CI
...@@ -50,7 +50,7 @@ void CbmStsUnpackConfig::InitAlgo() ...@@ -50,7 +50,7 @@ void CbmStsUnpackConfig::InitAlgo()
if (fMonitor) { fAlgo->SetMonitor(fMonitor); } if (fMonitor) { fAlgo->SetMonitor(fMonitor); }
// Set firmware binning (only relevant for legacy mode) // Set firmware binning (only relevant for legacy mode)
if (fbUseFwBinning) { fAlgo->SetFwBinning(true); } fAlgo->SetFwBinning(fbUseFwBinning);
// Now we have all information required to initialise the algorithm // Now we have all information required to initialise the algorithm
fAlgo->Init(); fAlgo->Init();
......
...@@ -144,7 +144,7 @@ protected: ...@@ -144,7 +144,7 @@ protected:
bool fbDupliWithoutAdc = true; bool fbDupliWithoutAdc = true;
/** @brief Enables firmware binning (some implementations ignore this) */ /** @brief Enables firmware binning (some implementations ignore this) */
bool fbUseFwBinning = false; bool fbUseFwBinning = true;
/// Temporary storage of user parameters /// Temporary storage of user parameters
std::vector<FebChanMaskReco> fvChanMasks = {}; std::vector<FebChanMaskReco> fvChanMasks = {};
......
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