diff --git a/Detectors/FIT/FV0/simulation/include/FV0Simulation/FV0DigParam.h b/Detectors/FIT/FV0/simulation/include/FV0Simulation/FV0DigParam.h index a34c72714fbb4..5fb8ed15df746 100644 --- a/Detectors/FIT/FV0/simulation/include/FV0Simulation/FV0DigParam.h +++ b/Detectors/FIT/FV0/simulation/include/FV0Simulation/FV0DigParam.h @@ -71,9 +71,8 @@ struct FV0DigParam : o2::conf::ConfigurableParamHelper { short mTimeThresholdForReco = 1000; // only channels with time below will participate in calibration and collision time int NchannelsLevel = 8; // trigger Nchannels paramter float InnerRingsChargeLevel = 0; // InnerRingsChargeLevel, Tclu - float OuterRingsChargeLevel = 0; //TcluOuterRingsChargeLevel, Tclu - float ChargeLevel = 10; //ChargeLevel, Tclu - + float OuterRingsChargeLevel = 0; // TcluOuterRingsChargeLevel, Tclu + float ChargeLevel = 10; // ChargeLevel, Tclu O2ParamDef(FV0DigParam, "FV0DigParam"); }; diff --git a/Detectors/FIT/FV0/simulation/src/Digitizer.cxx b/Detectors/FIT/FV0/simulation/src/Digitizer.cxx index e9d3d727e6950..79c93308cf281 100644 --- a/Detectors/FIT/FV0/simulation/src/Digitizer.cxx +++ b/Detectors/FIT/FV0/simulation/src/Digitizer.cxx @@ -308,9 +308,10 @@ void Digitizer::storeBC(const BCCache& bc, bool isA, isNchannels, isAIn, isAOut, isTotalCharge; isA = nTrgFiredCells > 0; isNchannels = nTrgFiredCells > FV0DigParam::Instance().NchannelsLevel; - isAIn = nSignalInner > FV0DigParam::Instance().;NchannelsLevel // ring 1,2 and 3 - isAOut = nSignalOuter > FV0DigParam::Instance().NchannelsLevel; // ring 4 and 5 - isTotalCharge = 0.125*totalChargeAllRing > 2*FV0DigParam::Instance().ChargeLevel; + isAIn = nSignalInner > FV0DigParam::Instance().; + NchannelsLevel // ring 1,2 and 3 + isAOut = nSignalOuter > FV0DigParam::Instance().NchannelsLevel; // ring 4 and 5 + isTotalCharge = 0.125 * totalChargeAllRing > 2 * FV0DigParam::Instance().ChargeLevel; Triggers triggers; const int unusedCharge = o2::fit::Triggers::DEFAULT_AMP;