11 'AuditAlgorithms' :
False,
12 'AuditInitialize' :
False,
13 'AuditReinitialize' :
False,
14 'AuditRestart' :
False,
15 'AuditExecute' :
False,
16 'AuditFinalize' :
False,
17 'AuditBeginRun' :
False,
18 'AuditEndRun' :
False,
22 'MonitorService' :
'MonitorSvc',
23 'RegisterForContextService' :
False,
25 'NeededResources' : [ ],
27 'FilterCircularDependencies' :
True,
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] """,
53 def __init__(self, name = Configurable.DefaultName, **kwargs):
54 super(GaudiSvcTest__CounterTestAlg, self).
__init__(name)
55 for n,v
in kwargs.items():
60 return 'GaudiSvcTest::CounterTestAlg'
def __init__(self, name=Configurable.DefaultName, kwargs)