ATLAS Offline Software
TrigmuRoIMonitoring.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2 
3 from AthenaMonitoringKernel.GenericMonitoringTool import GenericMonitoringTool
4 
5 def TrigmuRoIMonitoring(flags, name = "TrigmuRoIMonitoring"):
6 
7  montool = GenericMonitoringTool(flags, name, HistPath = name)
8 
9  montool.defineHistogram('RpcOutOfTime', type='TH1F', path='EXPERT', title="Distribution of the BCID difference for the Rpc RoI out of Time; (Muon RoI BCID - Event BCID)",xbins=21, xmin=-10.5, xmax=10.5)
10  montool.defineHistogram('TgcOutOfTime', type='TH1F', path='EXPERT', title="Distribution of the BCID difference for the Tgc RoI out of Time; (Muon RoI BCID - Event BCID)",xbins=21, xmin=-10.5, xmax=10.5)
11  montool.defineHistogram('EtaOutOfTime, PhiOutOfTime', type='TH2F', path='EXPERT', title="Eta vs Phi of the Mupon RoI out of time; Eta; Phi", xbins=108, xmin=-2.7, xmax=2.7, ybins=96, ymin=-3.1416, ymax=3.1416 )
12 
13  return montool
TrigmuRoIMonitoring.TrigmuRoIMonitoring
def TrigmuRoIMonitoring(flags, name="TrigmuRoIMonitoring")
Definition: TrigmuRoIMonitoring.py:5
GenericMonitoringTool
Definition: GenericMonitoringTool.py:1