Skip to content

Commit f23fabe

Browse files
committed
Fix braces
1 parent ec3ea8f commit f23fabe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,9 +188,9 @@ 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;
193-
193+
}
194194
if (mDoClusters && mClusterer->getMaxROFDepthToSquash()) {
195195
// Digits squashing require to run on a batch of digits and uses a digit reader, cannot (?) run with decoder
196196
// - Setup decoder for running on a batch of digits

0 commit comments

Comments
 (0)