The Gaudi Framework  v30r3 (a5ef0a68)
GaudiPythonConf.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 PythonScriptingSvc( ConfigurableService ) :
5  __slots__ = {
6  'OutputLevel' : 0, # int
7  'AuditServices' : False, # bool
8  'AuditInitialize' : False, # bool
9  'AuditStart' : False, # bool
10  'AuditStop' : False, # bool
11  'AuditFinalize' : False, # bool
12  'AuditReinitialize' : False, # bool
13  'AuditRestart' : False, # bool
14  'StartupScript' : '', # str
15  }
16  _propertyDocDct = {
17  'OutputLevel' : """ output level [Service] """,
18  'AuditServices' : """ [[deprecated]] unused [Service] """,
19  'AuditInitialize' : """ trigger auditor on initialize() [Service] """,
20  'AuditStart' : """ trigger auditor on start() [Service] """,
21  'AuditStop' : """ trigger auditor on stop() [Service] """,
22  'AuditFinalize' : """ trigger auditor on finalize() [Service] """,
23  'AuditReinitialize' : """ trigger auditor on reinitialize() [Service] """,
24  'AuditRestart' : """ trigger auditor on restart() [Service] """,
25  }
26  def __init__(self, name = Configurable.DefaultName, **kwargs):
27  super(PythonScriptingSvc, self).__init__(name)
28  for n,v in kwargs.items():
29  setattr(self, n, v)
30  def getDlls( self ):
31  return 'GaudiPython'
32  def getType( self ):
33  return 'PythonScriptingSvc'
34  pass # class PythonScriptingSvc
def __init__(self, name=Configurable.DefaultName, kwargs)