The Gaudi Framework  master (37c0b60a)
TemplatedAlg.py
Go to the documentation of this file.
1 
14 
15 from 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 )
22 from Gaudi.Configuration import *
23 
24 GaudiTestSuiteCommonConf()
25 
26 is1 = TemplatedAlg_int_std__vector_std__string_std__allocator_std__string_s_s_(
27  "TAlgIS1", TProperty=100, RProperty=["string1", "string2"]
28 )
29 is2 = TAlgIS("TAlgIS2", TProperty=100, RProperty=["string1", "string2"])
30 db1 = TemplatedAlg_double_bool_("TAlgDB1", TProperty=10.10, RProperty=True)
31 db2 = 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 )
Gaudi.Configuration
Definition: Configuration.py:1
ApplicationMgr
Definition: ApplicationMgr.h:57