The Gaudi Framework  v30r3 (a5ef0a68)
GaudiProfilingConf.py
Go to the documentation of this file.
1 #Wed Aug 1 23:09:31 2018"""Automatically generated. DO NOT EDIT please"""
3 
4 class PerfMonAuditor( ConfigurableAuditor ) :
5  __slots__ = {
6  'OutputLevel' : 0, # int
7  'Enable' : True, # bool
8  'EVENT0' : '', # str
9  'EVENT1' : '', # str
10  'EVENT2' : '', # str
11  'EVENT3' : '', # str
12  'FAMILY' : '', # str
13  'PREFIX' : '', # str
14  'INV0' : False, # bool
15  'INV1' : False, # bool
16  'INV2' : False, # bool
17  'INV3' : False, # bool
18  'CMASK0' : 0, # int
19  'CMASK1' : 0, # int
20  'CMASK2' : 0, # int
21  'CMASK3' : 0, # int
22  'SP0' : 0, # int
23  'SP1' : 0, # int
24  'SP2' : 0, # int
25  'SP3' : 0, # int
26  'SAMPLE' : False, # bool
27  'START_AT_EVENT' : 0, # int
28  'IS_NEHALEM' : 1, # int
29  }
30  _propertyDocDct = {
31  'OutputLevel' : """ output level [Auditor] """,
32  'Enable' : """ should the auditor be used or not [Auditor] """,
33  }
34  def __init__(self, name = Configurable.DefaultName, **kwargs):
35  super(PerfMonAuditor, self).__init__(name)
36  for n,v in kwargs.items():
37  setattr(self, n, v)
38  def getDlls( self ):
39  return 'GaudiProfiling'
40  def getType( self ):
41  return 'PerfMonAuditor'
42  pass # class PerfMonAuditor
def __init__(self, name=Configurable.DefaultName, kwargs)