diff --git a/Trigger/TrigMonitoring/TrigMETMonitoring/python/TrigMETMonitorAlgorithm.py b/Trigger/TrigMonitoring/TrigMETMonitoring/python/TrigMETMonitorAlgorithm.py index d308d2200688befe038dfac17bf8f304f72a5287..eee3f58e1c774d9407621674bac599807269b206 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 ec39c2ae5a64917d71141da1c02ff2079066046b..ac3370bfc7ecddb6bd8e1ecefea56838d1b85ee3 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; }