Skip to content

Commit 3b8a437

Browse files
authored
Fix conditional block formatting in RawDecoderSpec.cxx
1 parent 877c9d4 commit 3b8a437

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

Detectors/CTP/workflowLumi/src/RawDecoderSpec.cxx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -325,10 +325,12 @@ void RawDecoderSpec::computeLumiPerBC(const o2::pmr::vector<CTPDigit>& ctpdigits
325325
uint64_t mask = digit.CTPInputMask.to_ullong();
326326
uint16_t bc = digit.intRecord.bc;
327327
if (bc < o2::constants::lhc::LHCMaxBunches) {
328-
if (mask & inputMask1)
328+
if (mask & inputMask1) {
329329
tfCountsPerBC1[bc] += 1.0;
330-
if (mask & inputMask2)
330+
}
331+
if (mask & inputMask2) {
331332
tfCountsPerBC2[bc] += 1.0;
333+
}
332334
}
333335
}
334336
int64_t unixTimeStart = unixTimeForOrbitStart(firstOrbit);

0 commit comments

Comments
 (0)