13 from Configurables 
import ExtendedProperties, GaudiExamplesCommonConf
 
   16 GaudiExamplesCommonConf()
 
   23 xProps.PairDD = (3.141592 * m, 2.18281828)  
 
   24 xProps.PairII = (3, 2)  
 
   27 xProps.VectorOfPairsDD += [(0, 1), (1, 2), (2, 3), (3, 4)]
 
   28 xProps.VectorOfPairsDD += [(4, 5), (5, 6), (6, 7), (7, 8)]
 
   31 xProps.VectorOfVectorsString = [[
"a", 
"b", 
"c"], [
"A", 
"B", 
"C"]]
 
   34 xProps.VectorOfVectorsDouble = [[0, 1, 2], [0, -0.5, -0.25]]
 
   37 xProps.MapIntDouble = {1: 0.1, 2: 0.2, 3: 0.3}
 
   40 xProps.MapStringString = {
 
   41     "a": 
"sddsgsgsdgdggf",
 
   42     "b": 
"sddsgsgsdgdggf",
 
   43     "c": 
"sddsgsgsdgdggf",
 
   47 xProps.MapStringInt = {
"a": 1, 
"b": 2, 
"c": 3}
 
   50 xProps.MapStringDouble = {
"aa": 0.1, 
"bb": 0.2, 
"cc": 3}
 
   53 xProps.MapStringVectorOfStrings = {
 
   54     "aaa": [
"a", 
"b", 
"c"],
 
   55     "bbb": [
"a", 
"b", 
"c"],
 
   56     "ccc": [
"a", 
"b", 
"c"],
 
   60 xProps.MapStringVectorOfDoubles = {
 
   62     "bbb": [1.0, 2.0, 3.0],
 
   63     "ccc": [0.1, 0.2, 0.3],
 
   67 xProps.MapStringVectorOfInts = {
"aaa": [1, 2, 3], 
"bbb": [4, 5, 6], 
"ccc": [7, 8, 9]}
 
   70 xProps.MapIntInt = {1: 10, 2: 20, 3: 30}
 
   73 xProps.VectorOfPairsII = [(1, 1), (2, 1), (3, 2), (4, 3), (5, 5)]
 
   76 xProps.MapIntString = {0: 
"zero", 2: 
"two", -1: 
"minus one"}
 
   79 xProps.MapUIntString = {0: 
"UZero", 2: 
"UTwo", 1: 
"UOne"}
 
   82 xProps.EmptyVector = []
 
   84 xProps.TupleStringIntDouble = (
"hello", 10, 0.001)
 
   85 xProps.TupleString = (
"hello",)
 
   86 xProps.StdArrayDouble3 = (3.3, 2.2, 1.1)
 
   87 xProps.StdArrayInt1 = (42,)
 
   89 xProps.GaudiMapSS = {
"a": 
"1", 
"b": 
"2"}
 
   94     TopAlg=[xProps], EvtMax=1, EvtSel=
"NONE", HistogramPersistency=
"NONE"