GaudiSvcTestConf.py
Go to the documentation of this file.
1 #Fri Jan 29 13:07:11 2016"""Automatically generated. DO NOT EDIT please"""
4 
5 class GaudiSvcTest__CounterTestAlg( ConfigurableAlgorithm ) :
6  __slots__ = {
7  'OutputLevel' : 0, # int
8  'Enable' : True, # bool
9  'ErrorMax' : 1, # int
10  'ErrorCounter' : 0, # int
11  'DataInputs' : DataObjectDescriptorCollection(""), # DataDescriptorCollection
12  'DataOutputs' : DataObjectDescriptorCollection(""), # DataDescriptorCollection
13  'AuditAlgorithms' : False, # bool
14  'AuditInitialize' : False, # bool
15  'AuditReinitialize' : False, # bool
16  'AuditRestart' : False, # bool
17  'AuditExecute' : False, # bool
18  'AuditFinalize' : False, # bool
19  'AuditBeginRun' : False, # bool
20  'AuditEndRun' : False, # bool
21  'AuditStart' : False, # bool
22  'AuditStop' : False, # bool
23  'MonitorService' : 'MonitorSvc', # str
24  'RegisterForContextService' : False, # bool
25  'IsClonable' : False, # bool
26  'Cardinality' : 1, # int
27  'NeededResources' : [ ], # list
28  }
29  _propertyDocDct = {
30  'Cardinality' : """ How many clones to create """,
31  'IsClonable' : """ Thread-safe enough for cloning? """,
32  'RegisterForContextService' : """ The flag to enforce the registration for Algorithm Context Service """,
33  }
34  def __init__(self, name = Configurable.DefaultName, **kwargs):
35  super(GaudiSvcTest__CounterTestAlg, self).__init__(name)
36  for n,v in kwargs.items():
37  setattr(self, n, v)
38  def getDlls( self ):
39  return 'GaudiSvcTest'
40  def getType( self ):
41  return 'GaudiSvcTest::CounterTestAlg'
42  pass # class GaudiSvcTest__CounterTestAlg
def __init__(self, name=Configurable.DefaultName, kwargs)