The Gaudi Framework  master (82fdf313)
Loading...
Searching...
No Matches
TemplatedAlg.py
Go to the documentation of this file.
14
15from Configurables import (
16 GaudiTestSuiteCommonConf,
17 TAlgDB,
18 TAlgIS,
19 TemplatedAlg_double_bool_,
20 TemplatedAlg_int_std__vector_std__string_std__allocator_std__string_s_s_,
21)
22from Gaudi.Configuration import *
23
24GaudiTestSuiteCommonConf()
25
26is1 = TemplatedAlg_int_std__vector_std__string_std__allocator_std__string_s_s_(
27 "TAlgIS1", TProperty=100, RProperty=["string1", "string2"]
28)
29is2 = TAlgIS("TAlgIS2", TProperty=100, RProperty=["string1", "string2"])
30db1 = TemplatedAlg_double_bool_("TAlgDB1", TProperty=10.10, RProperty=True)
31db2 = TAlgDB("TAlgDB2", TProperty=10.10, RProperty=True)
32
33# -----------------------------------------------------------------
35 TopAlg=[is1, is2, db1, db2],
36 EvtMax=10, # events to be processed (default is 10)
37 EvtSel="NONE", # do not use any event input
38)
The Application Manager class.