14 *******************************************************************************
16 * Simple example which illustrate the 'boost::array'-job-properties and their *
17 * C++/Python intercommunications *
19 *******************************************************************************
22 __author__ =
"Vanya BELYAEV Ivan.Belyaev@nikhef.nl"
23 from Configurables
import ApplicationMgr
24 from Configurables
import Gaudi__Examples__BoostArrayProperties
as BAP
35 "BoostArrayProps", Strings=(
"a",
"bb",
"ccc",
"dddd"), Doubles=(1, 2, 3, 4, 5)
38 ApplicationMgr(EvtSel=
"NONE", TopAlg=[bap], EvtMax=10)
43 if "__main__" == __name__:
44 print(__doc__, __author__)
52 bap = gaudi.algorithm(
"BoostArrayProps")
54 bap.PropertiesPrint =
True
58 from GaudiKernel
import ROOT6WorkAroundEnabled
60 with warnings.catch_warnings():
62 warnings.simplefilter(
"ignore")
63 bap.Doubles = [-1, -2, -3, -4, -5]
64 bap.Strings = [
"a1",
"a2",
"a3",
"a4"]
66 bap.PropertiesPrint =
True