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