Skip to content

Commit

Permalink
code format
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam-Harper committed Mar 29, 2022
1 parent c8aa444 commit ef923ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion L1Trigger/L1TGlobal/interface/GlobalBoard.h
Expand Up @@ -193,7 +193,7 @@ namespace l1t {
void setBxFirst(int bx);
void setBxLast(int bx);

void setResetPSCountersEachLumiSec(bool val){m_resetPSCountersEachLumiSec=val;}
void setResetPSCountersEachLumiSec(bool val) { m_resetPSCountersEachLumiSec = val; }

public:
inline void setVerbosity(const int verbosity) { m_verbosity = verbosity; }
Expand Down
2 changes: 1 addition & 1 deletion L1Trigger/L1TGlobal/plugins/L1TGlobalProducer.cc
Expand Up @@ -68,7 +68,7 @@ void L1TGlobalProducer::fillDescriptions(edm::ConfigurationDescriptions& descrip

// switch for muon showers in Run-3
desc.add<bool>("useMuonShowers", false);
desc.add<bool>("resetPSCountersEachLumiSec",true);
desc.add<bool>("resetPSCountersEachLumiSec", true);
// These parameters have well defined default values and are not currently
// part of the L1T/HLT interface. They can be cleaned up or updated at will:
desc.add<bool>("ProduceL1GtDaqRecord", true);
Expand Down
2 changes: 1 addition & 1 deletion L1Trigger/L1TGlobal/src/GlobalBoard.cc
Expand Up @@ -981,7 +981,7 @@ void l1t::GlobalBoard::runFDL(edm::Event& iEvent,
}

// update and clear prescales at the beginning of the luminosity segment
if (m_firstEvLumiSegment || (m_currentLumi != iEvent.luminosityBlock() && m_resetPSCountersEachLumiSec) ) {
if (m_firstEvLumiSegment || (m_currentLumi != iEvent.luminosityBlock() && m_resetPSCountersEachLumiSec)) {
m_prescaleCounterAlgoTrig.clear();
for (int iBxInEvent = 0; iBxInEvent <= totalBxInEvent; ++iBxInEvent) {
m_prescaleCounterAlgoTrig.push_back(prescaleFactorsAlgoTrig);
Expand Down

0 comments on commit ef923ca

Please sign in to comment.