The Gaudi Framework  v30r3 (a5ef0a68)
PartPropSvcConf.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 PartPropSvc( 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  'InputFile' : 'PDGTABLE.MeV', # 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  'InputFile' : """ [PartPropSvc] """,
26  }
27  def __init__(self, name = Configurable.DefaultName, **kwargs):
28  super(PartPropSvc, self).__init__(name)
29  for n,v in kwargs.items():
30  setattr(self, n, v)
31  def getDlls( self ):
32  return 'PartPropSvc'
33  def getType( self ):
34  return 'PartPropSvc'
35  pass # class PartPropSvc
def __init__(self, name=Configurable.DefaultName, kwargs)