Skip to content

Commit

Permalink
Merge pull request cms-sw#175 from jshlee/CMSSW_6_2_X_SLHC
Browse files Browse the repository at this point in the history
remove more tao msg
  • Loading branch information
jshlee committed Jun 19, 2014
2 parents cb0f40b + da13fa4 commit 7ab09e8
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions L1Trigger/CSCTriggerPrimitives/src/CSCMotherboardME21GEM.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1043,9 +1043,11 @@ void CSCMotherboardME21GEM::buildCoincidencePads(const GEMCSCPadDigiCollection*
}
}

auto temp_copad = (out_co_pads).get(id);
for (auto c = temp_copad.first; c != temp_copad.second; ++c)
std::cout<<"copad built:" << *c << std::endl;
if (debug_gem_matching){
auto temp_copad = (out_co_pads).get(id);
for (auto c = temp_copad.first; c != temp_copad.second; ++c)
std::cout<<"copad built:" << *c << std::endl;
}
}
}

Expand Down Expand Up @@ -1145,7 +1147,7 @@ CSCMotherboardME21GEM::matchingGEMPads(const CSCCLCTDigi& clct, const GEMPadsBX&
int clct_bx = clct.getBX();
const int lowPad(cscHsToGemPad_[clct.getKeyStrip()].first);
const int highPad(cscHsToGemPad_[clct.getKeyStrip()].second);
const bool debug(true);
const bool debug(false);
if (debug) std::cout << "lowpad " << lowPad << " highpad " << highPad << " delta pad " << deltaPad <<std::endl;
for (auto p: pads){
if (debug) std::cout<<"DetId"<<GEMDetId(p.first)<<" "<< *(p.second)<<std::endl;
Expand Down Expand Up @@ -1177,7 +1179,7 @@ CSCMotherboardME21GEM::matchingGEMPads(const CSCALCTDigi& alct, const GEMPadsBX&
if ((unsigned int)(Wg+maxDeltaWg_)<cscWgToGemRollLong_.size() && cscWgToGemRollLong_[Wg] != cscWgToGemRollLong_[Wg+maxDeltaWg_])
Rolls.push_back(cscWgToGemRollLong_[Wg+maxDeltaWg_]);

const bool debug(true);
const bool debug(false);
if (debug) std::cout << "ALCT keyWG " << alct.getKeyWG() << std::endl;
for (auto alctRoll : Rolls)
{
Expand Down

0 comments on commit 7ab09e8

Please sign in to comment.