From f677b45589d2b6f7b3e69db1a81f7e2d3e8e9921 Mon Sep 17 00:00:00 2001 From: Sven Dildick Date: Fri, 10 Aug 2018 14:08:32 -0500 Subject: [PATCH] MAX_HALF_STRIP_ME1B is 127! --- L1Trigger/CSCTriggerPrimitives/src/CSCMotherboardME11.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/L1Trigger/CSCTriggerPrimitives/src/CSCMotherboardME11.cc b/L1Trigger/CSCTriggerPrimitives/src/CSCMotherboardME11.cc index fa50cfc0522ce..9953524bdf10c 100644 --- a/L1Trigger/CSCTriggerPrimitives/src/CSCMotherboardME11.cc +++ b/L1Trigger/CSCTriggerPrimitives/src/CSCMotherboardME11.cc @@ -378,7 +378,7 @@ std::vector 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 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_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; }