Skip to content

Commit ec3ea8f

Browse files
JianLIUhepshahor02
authored andcommitted
Fixed clang suggestion
1 parent 85c2961 commit ec3ea8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Detectors/ITSMFT/common/workflow/src/STFDecoderSpec.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ void STFDecoder<Mapping>::run(ProcessingContext& pc)
188188

189189
const auto& alpParams = o2::itsmft::DPLAlpideParam<o2::detectors::DetID::ITS>::Instance();
190190
int expectedTFSize = static_cast<int>(o2::constants::lhc::LHCMaxBunches * o2::base::GRPGeomHelper::instance().getGRPECS()->getNHBFPerTF() / alpParams.roFrameLengthInBC); // 3564*32 / ROF Length in BS = number of ROFs per TF
191-
if ((expectedTFSize != nTriggersProcessed) && mTFCounter > 1 && nTriggersProcessed > 0)
191+
if ((expectedTFSize != nTriggersProcessed) && (mTFCounter > 1) && (nTriggersProcessed > 0))
192192
LOG(error) << "Inconsistent number of ROF per TF. From parameters: " << expectedTFSize << " from readout: " << nTriggersProcessed;
193193

194194
if (mDoClusters && mClusterer->getMaxROFDepthToSquash()) {

0 commit comments

Comments
 (0)