ATLAS Offline Software
OnlineMon.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2 
3 def getMonTool_Algorithm(flags, path):
4  from AthenaMonitoringKernel.GenericMonitoringTool import GenericMonitoringTool
5  monTool = GenericMonitoringTool(flags, 'MonTool',
6  HistPath = path)
7 
8  monTool.defineHistogram( 'TIME_constitmod', path='EXPERT', type='TH1F', title='Counts',
9  xbins=100, xmin=0, xmax=250 )
10 
11  return monTool
OnlineMon.getMonTool_Algorithm
def getMonTool_Algorithm(flags, path)
Definition: OnlineMon.py:3
GenericMonitoringTool
Definition: GenericMonitoringTool.h:53