Skip to content

Commit

Permalink
CTP raw decoder fix bool operation (#11743)
Browse files Browse the repository at this point in the history
  • Loading branch information
lietava authored Aug 9, 2023
1 parent 205ae3c commit d4199cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Detectors/CTP/reconstruction/src/RawDataDecoder.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ int RawDataDecoder::decodeRaw(o2::framework::InputRecord& inputs, std::vector<o2
LOG(error) << "LM:" << nLM << " L0:" << nL0 << " L1:" << nL1 << " TwI:" << nTwI << " Trigger cals wo inputTwoI:" << nTwoI;
}
}
if (mDoDigits && ~mDecodeInps) {
if (mDoDigits && !mDecodeInps) {
for (auto const& dig : digitsMap) {
digits.push_back(dig.second);
}
Expand Down

0 comments on commit d4199cf

Please sign in to comment.