Skip to content

Commit

Permalink
MAX_HALF_STRIP_ME1B is 127!
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven Dildick authored Aug 10, 2018
1 parent a9612f9 commit f677b45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions L1Trigger/CSCTriggerPrimitives/src/CSCMotherboardME11.cc
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ std::vector<CSCCorrelatedLCTDigi> CSCMotherboardME11::getLCTs1b() const
for (int bx = 0; bx < CSCConstants::MAX_LCT_TBINS; bx++)
for (unsigned int mbx = 0; mbx < match_trig_window_size; mbx++)
for (int i=0;i<CSCConstants::MAX_LCTS_PER_CSC;i++)
if (allLCTsME11[bx][mbx][i].isValid() and allLCTsME11[bx][mbx][i].getStrip() < CSCConstants::MAX_HALF_STRIP_ME1B) tmpV.push_back(allLCTsME11[bx][mbx][i]);
if (allLCTsME11[bx][mbx][i].isValid() and allLCTsME11[bx][mbx][i].getStrip() <= CSCConstants::MAX_HALF_STRIP_ME1B) tmpV.push_back(allLCTsME11[bx][mbx][i]);
return tmpV;
}

Expand All @@ -394,7 +394,7 @@ std::vector<CSCCorrelatedLCTDigi> CSCMotherboardME11::getLCTs1a() const
for (int bx = 0; bx < CSCConstants::MAX_LCT_TBINS; bx++)
for (unsigned int mbx = 0; mbx < match_trig_window_size; mbx++)
for (int i=0;i<CSCConstants::MAX_LCTS_PER_CSC;i++)
if (allLCTsME11[bx][mbx][i].isValid() and allLCTsME11[bx][mbx][i].getStrip() >= CSCConstants::MAX_HALF_STRIP_ME1B) tmpV.push_back(allLCTsME11[bx][mbx][i]);
if (allLCTsME11[bx][mbx][i].isValid() and allLCTsME11[bx][mbx][i].getStrip() > CSCConstants::MAX_HALF_STRIP_ME1B) tmpV.push_back(allLCTsME11[bx][mbx][i]);
return tmpV;
}

Expand Down

0 comments on commit f677b45

Please sign in to comment.