Skip to content

Commit

Permalink
Code format
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven Dildick committed Aug 23, 2021
1 parent 4e59935 commit 45a1877
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions EventFilter/CSCRawToDigi/test/CSCPackerUnpackerUnitTest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -299,8 +299,8 @@ unsigned CSCPackerUnpackerUnitTest::analyzeALCT(const CSCDetId& cscDetId,
}

// readout condition for wires: L1A + ALCT
bool hasALCT = CSCDigiToRawAccept::accept(
cscDetId, alcts, alctWindowMin_, alctWindowMax_, CSCConstants::ALCT_CENTRAL_BX);
bool hasALCT =
CSCDigiToRawAccept::accept(cscDetId, alcts, alctWindowMin_, alctWindowMax_, CSCConstants::ALCT_CENTRAL_BX);

unsigned numWireDigisUnpacked = nDigis(cscDetId, wires_unpacked);

Expand Down Expand Up @@ -348,8 +348,8 @@ unsigned CSCPackerUnpackerUnitTest::analyzeCLCT(const CSCDetId& cscDetId,
}

// readout condition for comparators in (O)TMB; L1A + CLCT
bool hasCLCT = CSCDigiToRawAccept::accept(
cscDetId, clcts, clctWindowMin_, clctWindowMax_, CSCConstants::CLCT_CENTRAL_BX);
bool hasCLCT =
CSCDigiToRawAccept::accept(cscDetId, clcts, clctWindowMin_, clctWindowMax_, CSCConstants::CLCT_CENTRAL_BX);

unsigned numCompDigisUnpacked = nDigis(cscDetId, comparators_unpacked);

Expand Down Expand Up @@ -401,12 +401,8 @@ unsigned CSCPackerUnpackerUnitTest::analyzePreCLCT(const CSCDetId& cscDetId,
preTriggerInCFEB.resize(CSCConstants::MAX_CFEBS_RUN2);

// readout condition for strips: L1A + preCLCT in CFEB
bool hasPreCLCT = CSCDigiToRawAccept::accept(cscDetId,
preclcts,
preTriggerWindowMin_,
preTriggerWindowMax_,
CSCConstants::CLCT_CENTRAL_BX,
preTriggerInCFEB);
bool hasPreCLCT = CSCDigiToRawAccept::accept(
cscDetId, preclcts, preTriggerWindowMin_, preTriggerWindowMax_, CSCConstants::CLCT_CENTRAL_BX, preTriggerInCFEB);

unsigned testsFailed = 0;

Expand Down

0 comments on commit 45a1877

Please sign in to comment.