The Gaudi Framework  v36r1 (3e2fb5a8)
TemplatedAlg.py
Go to the documentation of this file.
1 
14 
15 from Gaudi.Configuration import *
16 from Configurables import TAlgIS, TAlgDB, TemplatedAlg_int_std__vector_std__string_std__allocator_std__string_s_s_, TemplatedAlg_double_bool_
17 
18 from Configurables import GaudiExamplesCommonConf
19 GaudiExamplesCommonConf()
20 
21 is1 = TemplatedAlg_int_std__vector_std__string_std__allocator_std__string_s_s_(
22  'TAlgIS1', TProperty=100, RProperty=['string1', 'string2'])
23 is2 = TAlgIS('TAlgIS2', TProperty=100, RProperty=['string1', 'string2'])
24 db1 = TemplatedAlg_double_bool_('TAlgDB1', TProperty=10.10, RProperty=True)
25 db2 = TAlgDB('TAlgDB2', TProperty=10.10, RProperty=True)
26 
27 # -----------------------------------------------------------------
29  TopAlg=[is1, is2, db1, db2],
30  EvtMax=10, # events to be processed (default is 10)
31  EvtSel='NONE', # do not use any event input
32 )
Gaudi.Configuration
Definition: Configuration.py:1
ApplicationMgr
Definition: ApplicationMgr.h:57