The Gaudi Framework  v29r5 (37229091)
GaudiSvcTestConf.py
Go to the documentation of this file.
1 #Wed Mar 6 15:39:55 2019"""Automatically generated. DO NOT EDIT please"""
3 
4 class GaudiSvcTest__CounterTestAlg( ConfigurableAlgorithm ) :
5  __slots__ = {
6  'ExtraInputs' : [], # list
7  'ExtraOutputs' : [], # list
8  'OutputLevel' : 0, # int
9  'Enable' : True, # bool
10  'ErrorMax' : 1, # int
11  'AuditAlgorithms' : False, # bool
12  'AuditInitialize' : False, # bool
13  'AuditReinitialize' : False, # bool
14  'AuditRestart' : False, # bool
15  'AuditExecute' : False, # bool
16  'AuditFinalize' : False, # bool
17  'AuditBeginRun' : False, # bool
18  'AuditEndRun' : False, # bool
19  'AuditStart' : False, # bool
20  'AuditStop' : False, # bool
21  'Timeline' : True, # bool
22  'MonitorService' : 'MonitorSvc', # str
23  'RegisterForContextService' : False, # bool
24  'Cardinality' : 1, # int
25  'NeededResources' : [ ], # list
26  'IsIOBound' : False, # bool
27  'FilterCircularDependencies' : True, # bool
28  }
29  _propertyDocDct = {
30  'Cardinality' : """ how many clones to create - 0 means algo is reentrant [Algorithm] """,
31  'IsIOBound' : """ if the algorithm is I/O-bound (in the broad sense of Von Neumann bottleneck) [Algorithm] """,
32  'RegisterForContextService' : """ flag to enforce the registration for Algorithm Context Service [Algorithm] """,
33  'MonitorService' : """ name to use for Monitor Service [Algorithm] """,
34  'NeededResources' : """ named resources needed during event looping [Algorithm] """,
35  'AuditEndRun' : """ trigger auditor on endRun() [Algorithm] """,
36  'AuditStop' : """ trigger auditor on stop() [Algorithm] """,
37  'AuditBeginRun' : """ trigger auditor on beginRun() [Algorithm] """,
38  'AuditFinalize' : """ trigger auditor on finalize() [Algorithm] """,
39  'Enable' : """ should the algorithm be executed or not [Algorithm] """,
40  'AuditInitialize' : """ trigger auditor on initialize() [Algorithm] """,
41  'AuditExecute' : """ trigger auditor on execute() [Algorithm] """,
42  'FilterCircularDependencies' : """ filter out circular data dependencies [Algorithm] """,
43  'AuditStart' : """ trigger auditor on start() [Algorithm] """,
44  'OutputLevel' : """ output level [Algorithm] """,
45  'ErrorMax' : """ [[deprecated]] max number of errors [Algorithm] """,
46  'ExtraOutputs' : """ [[deprecated]] [DataHandleHolderBase<PropertyHolder<CommonMessaging<implements<IAlgorithm,IDataHandleHolder,IProperty,IStateful> > > >] """,
47  'AuditAlgorithms' : """ [[deprecated]] unused [Algorithm] """,
48  'ExtraInputs' : """ [[deprecated]] [DataHandleHolderBase<PropertyHolder<CommonMessaging<implements<IAlgorithm,IDataHandleHolder,IProperty,IStateful> > > >] """,
49  'AuditReinitialize' : """ trigger auditor on reinitialize() [Algorithm] """,
50  'Timeline' : """ send events to TimelineSvc [Algorithm] """,
51  'AuditRestart' : """ trigger auditor on restart() [Algorithm] """,
52  }
53  def __init__(self, name = Configurable.DefaultName, **kwargs):
54  super(GaudiSvcTest__CounterTestAlg, self).__init__(name)
55  for n,v in kwargs.items():
56  setattr(self, n, v)
57  def getDlls( self ):
58  return 'GaudiSvcTest'
59  def getType( self ):
60  return 'GaudiSvcTest::CounterTestAlg'
61  pass # class GaudiSvcTest__CounterTestAlg
def __init__(self, name=Configurable.DefaultName, kwargs)