diff --git a/Trigger/TrigT1/TrigT1CTP/src/CTPEmulation.cxx b/Trigger/TrigT1/TrigT1CTP/src/CTPEmulation.cxx index 9951b85fdaff39fa3070c0b7216c58f6ae551939..ffe4ba6caacfa96128d9b6278ecdcbbfd46bf12f 100644 --- a/Trigger/TrigT1/TrigT1CTP/src/CTPEmulation.cxx +++ b/Trigger/TrigT1/TrigT1CTP/src/CTPEmulation.cxx @@ -758,11 +758,8 @@ LVL1CTP::CTPEmulation::calculateJetMultiplicity( const TrigConf::TriggerThreshol //int ieta = int((eta + (eta>0 ? 0.005 : -0.005))/0.1); //int iphi = 0; // int((m_refPhi-0.005)*32/M_PI); iphi = 16*(iphi/16) + 8; bool pass = ((unsigned int) (jet->et8x8()/1000.)) > confThr->triggerThresholdValue( ieta, iphi )->ptcut(); - if (confThr->name() == "jJ15.31ETA49") { - std::cout << "JJJ ieta " << ieta << " iphi " << iphi << " eta " << eta << " phi " << phi << " et " << ((unsigned int) (jet->et8x8()/1000.)) << " thr " << confThr->triggerThresholdValue( ieta, iphi )->ptcut() << ( pass ? " --> pass" : "") << std::endl; - } - multiplicity += pass ? 1 : 0; - } + multiplicity += pass ? 1 : 0; + } } }