Skip to content

Commit d2f967d

Browse files
committed
clang
1 parent 08537a4 commit d2f967d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Detectors/CTP/reconstruction/src/RawDataDecoder.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -607,8 +607,8 @@ int RawDataDecoder::shiftInputs(std::map<o2::InteractionRecord, CTPDigit>& digit
607607
if (d.intRecord.bc == (o2::constants::lhc::LHCMaxBunches - L1shift)) { // input can be lost because latency class-l1input = 1
608608
nTwoIlost++;
609609
} else {
610-
//LOG(error) << d.intRecord << " " << d.CTPClassMask << " " << d.CTPInputMask;
611-
//std::cout << "ERROR:" << std::hex << d.CTPClassMask << " " << d.CTPInputMask << std::dec << std::endl;
610+
// LOG(error) << d.intRecord << " " << d.CTPClassMask << " " << d.CTPInputMask;
611+
// std::cout << "ERROR:" << std::hex << d.CTPClassMask << " " << d.CTPInputMask << std::dec << std::endl;
612612
nTwoI++;
613613
}
614614
}
@@ -618,7 +618,7 @@ int RawDataDecoder::shiftInputs(std::map<o2::InteractionRecord, CTPDigit>& digit
618618
if (nTwoI) { // Trigger class wo Input
619619
LOG(error) << "LM:" << nLM << " L0:" << nL0 << " L1:" << nL1 << " TwI:" << nTwI << " Trigger classes wo input:" << nTwoI;
620620
}
621-
if(nTwoIlost) {
621+
if (nTwoIlost) {
622622
LOG(warn) << " Trigger classes wo input from diff latency 1:" << nTwoIlost;
623623
}
624624
return 0;

0 commit comments

Comments
 (0)