Skip to content

Commit

Permalink
code-format
Browse files Browse the repository at this point in the history
  • Loading branch information
perrotta committed Aug 27, 2020
1 parent 5d56102 commit 0445ac2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions L1Trigger/L1TGlobal/src/GlobalBoard.cc
Original file line number Diff line number Diff line change
Expand Up @@ -896,9 +896,10 @@ void l1t::GlobalBoard::runFDL(edm::Event& iEvent,
temp_algPrescaledOr = true;
}
} // require bit in range
else if (!alreadyReported) {
else if (!alreadyReported) {
alreadyReported = true;
edm::LogWarning("L1TGlobal") << "\nWarning: algoBit >= prescaleFactorsAlgoTrig.size() in bx " << iBxInEvent << std::endl;
edm::LogWarning("L1TGlobal") << "\nWarning: algoBit >= prescaleFactorsAlgoTrig.size() in bx " << iBxInEvent
<< std::endl;
}
} //if algo bit is set true
} //loop over alg bits
Expand Down Expand Up @@ -928,7 +929,8 @@ void l1t::GlobalBoard::runFDL(edm::Event& iEvent,
isMasked = (triggerMaskAlgoTrig.at(iBit) == 0);
else if (!alreadyReported) {
alreadyReported = true;
edm::LogWarning("L1TGlobal") << "\nWarning: algoBit >= triggerMaskAlgoTrig.size() in bx " << iBxInEvent << std::endl;
edm::LogWarning("L1TGlobal") << "\nWarning: algoBit >= triggerMaskAlgoTrig.size() in bx " << iBxInEvent
<< std::endl;
}

bool passMask = (bitValue && !isMasked);
Expand Down

0 comments on commit 0445ac2

Please sign in to comment.