ATLAS Offline Software
Loading...
Searching...
No Matches
OnlineMon.py
Go to the documentation of this file.
1# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2
3def 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
getMonTool_Algorithm(flags, path)
Definition OnlineMon.py:3