ATLAS Offline Software
TrigBmuxComboHypoMonitoringConfig.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2 
3 from AthenaMonitoringKernel.GenericMonitoringTool import GenericMonitoringTool
4 
5 def TrigBmuxComboHypoMonitoring(flags, name):
6  montool = GenericMonitoringTool(flags, name)
7 
8  montool.defineHistogram('nMuon', type='TH1F', path='EXPERT', title="number of muons", xbins=10, xmin=0, xmax=10)
9  montool.defineHistogram('nTrk', type='TH1F', path='EXPERT', title="number of tracks in extended RoIs", xbins=200, xmin=0, xmax=200)
10  montool.defineHistogram('nBPhysObject', type='TH1F', path='EXPERT', title="number of fitted BPhysObjects", xbins=100, xmin=0, xmax=100)
11 
12  return montool
TrigBmuxComboHypoMonitoringConfig.TrigBmuxComboHypoMonitoring
def TrigBmuxComboHypoMonitoring(flags, name)
Definition: TrigBmuxComboHypoMonitoringConfig.py:5
GenericMonitoringTool
Definition: GenericMonitoringTool.py:1