From 7342f1291d4c24be83f22923e415358e51a23c42 Mon Sep 17 00:00:00 2001 From: Kenji Hamano <kenji.hamano@cern.ch> Date: Thu, 3 Oct 2019 13:04:18 -0700 Subject: [PATCH] TrigMETMonitorAlgorithm WARNING message update --- .../python/TrigMETMonitorAlgorithm.py | 4 ++-- .../TrigMETMonitoring/src/TrigMETMonitorAlgorithm.cxx | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Trigger/TrigMonitoring/TrigMETMonitoring/python/TrigMETMonitorAlgorithm.py b/Trigger/TrigMonitoring/TrigMETMonitoring/python/TrigMETMonitorAlgorithm.py index d308d220068..eee3f58e1c7 100644 --- a/Trigger/TrigMonitoring/TrigMETMonitoring/python/TrigMETMonitorAlgorithm.py +++ b/Trigger/TrigMonitoring/TrigMETMonitoring/python/TrigMETMonitorAlgorithm.py @@ -55,7 +55,7 @@ def TrigMETMonConfig(inputFlags): # HLT_xe0noL1_l2fsperf_L1gXERHO50,HLT_xe0noL1_l2fsperf_L1gXEPUFIT50, # HLT_xe0noL1_l2fsperf_pufit_L1gXERHO50,HLT_xe0noL1_l2fsperf_pufit_L1gXEPUFIT50 # without filters, all events are processed. - TrigMETMonAlg.TriggerChain = 'L1_XE10' + #TrigMETMonAlg.TriggerChain = 'L1_XE10' TrigMETMonChainAlg.TriggerChain = 'HLT_xe30_tcpufit_L1XE10' @@ -111,7 +111,7 @@ def TrigMETMonConfig(inputFlags): metGroup.defineHistogram('tcpufit_Ey',title='tcpufit Missing E_{y};E_{y} (GeV);Events', path='Shifter/tcpufit',xbins=199,xmin=-298.5,xmax=298.5) metGroup.defineHistogram('tcpufit_Et',title='tcpufit Missing E_{T};E_{T} (GeV);Events', - path='Shifter/tcpufit',xbins=205,xmin=-13.5,xmax=401.5) + path='Shifter/Eff',xbins=205,xmin=-13.5,xmax=401.5) metGroup.defineHistogram('mht_Ex',title='mht Missing E_{x};E_{x} (GeV);Events', path='Expert/mht',xbins=199,xmin=-298.5,xmax=298.5) metGroup.defineHistogram('mht_Ey',title='mht Missing E_{y};E_{y} (GeV);Events', diff --git a/Trigger/TrigMonitoring/TrigMETMonitoring/src/TrigMETMonitorAlgorithm.cxx b/Trigger/TrigMonitoring/TrigMETMonitoring/src/TrigMETMonitorAlgorithm.cxx index ec39c2ae5a6..ac3370bfc7e 100644 --- a/Trigger/TrigMonitoring/TrigMETMonitoring/src/TrigMETMonitorAlgorithm.cxx +++ b/Trigger/TrigMonitoring/TrigMETMonitoring/src/TrigMETMonitorAlgorithm.cxx @@ -43,31 +43,31 @@ StatusCode TrigMETMonitorAlgorithm::fillHistograms( const EventContext& ctx ) co // access met containers SG::ReadHandle<xAOD::EnergySumRoI> l1_roi_cont(m_lvl1_roi_key, ctx); if (! l1_roi_cont.isValid() ) { - ATH_MSG_WARNING("evtStore() does not contain L1 MET Collection with name "<< m_lvl1_roi_key); + ATH_MSG_WARNING("Container "<< m_lvl1_roi_key << " does not exist or is empty"); //return StatusCode::FAILURE; } SG::ReadHandle<xAOD::TrigMissingETContainer> hlt_cell_met_cont(m_hlt_cell_met_key, ctx); if (hlt_cell_met_cont->size()==0 || ! hlt_cell_met_cont.isValid() ) { - ATH_MSG_WARNING("evtStore() does not contain HLT MET Collection with name "<< m_hlt_cell_met_key); + ATH_MSG_WARNING("Container "<< m_hlt_cell_met_key << " does not exist or is empty"); //return StatusCode::FAILURE; } SG::ReadHandle<xAOD::TrigMissingETContainer> hlt_mht_met_cont(m_hlt_mht_met_key, ctx); if (hlt_mht_met_cont->size()==0 || ! hlt_mht_met_cont.isValid() ) { - ATH_MSG_WARNING("evtStore() does not contain HLT MET Collection with name "<< m_hlt_mht_met_key); + ATH_MSG_WARNING("Container "<< m_hlt_mht_met_key << " does not exist or is empty"); //return StatusCode::FAILURE; } SG::ReadHandle<xAOD::TrigMissingETContainer> hlt_tc_met_cont(m_hlt_tc_met_key, ctx); if (hlt_tc_met_cont->size()==0 || ! hlt_tc_met_cont.isValid() ) { - ATH_MSG_WARNING("evtStore() does not contain HLT MET Collection with name "<< m_hlt_tc_met_key); + ATH_MSG_WARNING("Container "<< m_hlt_tc_met_key << " does not exist or is empty"); //return StatusCode::FAILURE; } SG::ReadHandle<xAOD::TrigMissingETContainer> hlt_tcpufit_met_cont(m_hlt_tcpufit_met_key, ctx); if (hlt_tcpufit_met_cont->size()==0 || ! hlt_tcpufit_met_cont.isValid() ) { - ATH_MSG_WARNING("evtStore() does not contain HLT MET Collection with name "<< m_hlt_tcpufit_met_key); + ATH_MSG_WARNING("Container "<< m_hlt_tcpufit_met_key << " does not exist or is empty"); //return StatusCode::FAILURE; } -- GitLab