Skip to content
Snippets Groups Projects
Commit e472fbba authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

TrigMuonHypoMT: Reduce verbosity of TrigMuonEFHypoTool

Demote cut printout from INFO to DEBUG in initialize.
parent 21a2e761
No related branches found
No related tags found
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!39012TrigTauHypo+TrigMuonHypoMT: reduce verbosity and code cleanup
...@@ -34,11 +34,13 @@ StatusCode TrigMuonEFHypoTool::initialize(){ ...@@ -34,11 +34,13 @@ StatusCode TrigMuonEFHypoTool::initialize(){
for(size_t j=0; j<m_ptBins.size(); j++){ for(size_t j=0; j<m_ptBins.size(); j++){
m_bins[j] = m_ptBins[j].size() - 1; m_bins[j] = m_ptBins[j].size() - 1;
if (m_bins[j] != m_ptThresholds[j].size()) { if (m_bins[j] != m_ptThresholds[j].size()) {
ATH_MSG_ERROR("bad thresholds setup .... exiting!"); ATH_MSG_ERROR("bad thresholds setup .... exiting!");
return StatusCode::FAILURE; return StatusCode::FAILURE;
} }
for (std::vector<float>::size_type i=0; i<m_bins[j];++i) { if (msgLvl(MSG::DEBUG)) {
ATH_MSG_INFO( "bin " << m_ptBins[j][i] << " - " << m_ptBins[j][i+1]<<" with Pt Threshold of " << (m_ptThresholds[j][i])/Gaudi::Units::GeV<< " GeV"); for (std::vector<float>::size_type i=0; i<m_bins[j];++i) {
ATH_MSG_DEBUG( "bin " << m_ptBins[j][i] << " - " << m_ptBins[j][i+1]<<" with Pt Threshold of " << (m_ptThresholds[j][i])/Gaudi::Units::GeV<< " GeV");
}
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment