From e87fcd31af2c952c773d63d2dc749172cd42a53d Mon Sep 17 00:00:00 2001 From: Claudia Beatriz Glasman Kuguel <claudia.beatriz.glasman.kuguel@cern.ch> Date: Thu, 14 Jan 2016 12:46:59 +0100 Subject: [PATCH] included the use of the central tool for removing LB that LAr has vetoed entirely (JetMonitoring-01-00-37) * python/JetMonitoringHistos.py: included the use of the central tool for removing LB that LAr has vetoed entirely * Tag: JetMonitoring-01-00-37 --- .../Jet/JetMonitoring/python/JetMonitoringHistos.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Reconstruction/Jet/JetMonitoring/python/JetMonitoringHistos.py b/Reconstruction/Jet/JetMonitoring/python/JetMonitoringHistos.py index 596ff36c8060..d31379893fae 100644 --- a/Reconstruction/Jet/JetMonitoring/python/JetMonitoringHistos.py +++ b/Reconstruction/Jet/JetMonitoring/python/JetMonitoringHistos.py @@ -6,6 +6,9 @@ from AthenaCommon.AppMgr import ToolSvc from JetRec.JetRecFlags import jetFlags from JetSelectorTools.JetSelectorToolsConf import JetCleaningTool from RecExConfig.ObjKeyStore import cfgKeyStore +#New AthenaMonitoring filter tool to be added to filter out events in non-filled BCIDs +from AthenaMonitoring.BadLBFilterTool import GetLArBadLBFilterTool +monbadlb = GetLArBadLBFilterTool() monitorTracks = cfgKeyStore.isInTransient('xAOD::JetContainer','AntiKt3PV0TrackJets') @@ -124,10 +127,16 @@ if monitorTracks : #if jetFlags.useTracks: # athenaMonTool.HistoTools += [ commonMonitoringTool( "AntiKt3PV0TrackJets" ) ] +#cbg +athenaMonTool.FilterTools += [ monbadlb ] + ToolSvc += athenaMonTool athenaMonTool_LB = JetMonitoringTool("JetMonitoring_LB", HistoTools = [ "ptN", "Timing", "EMFrac", "HECFrac", "LArQuality", JetKinematicHistos("kinematics",PlotOccupancy=True, PlotAveragePt=True, PlotAverageE=True, PlotNJet=True) ] ,IntervalType = 2) +#cbg +athenaMonTool_LB.FilterTools += [ monbadlb ] + ToolSvc += athenaMonTool_LB from AthenaMonitoring.DQMonFlags import DQMonFlags @@ -138,6 +147,8 @@ if DQMonFlags.useTrigger() : commonMonitoringTool( "AntiKt4EMTopoJets", pathSuffix='_trig' ), commonMonitoringTool( "AntiKt10LCTopoJets", pathSuffix='_trig' ) ] , IntervalType = 6 ) + #cbg + athenaMonTool_trig.FilterTools += [ monbadlb ] ToolSvc += athenaMonTool_trig athenaMonTool_trig.TrigDecisionTool = ToolSvc.monTrigDecTool athenaMonTool_trig.TriggerChain = "CATEGORY_monitoring_jet" -- GitLab