14 from Configurables
import ExtendedProperties
16 from Configurables
import GaudiExamplesCommonConf
17 GaudiExamplesCommonConf()
24 xProps.PairDD = (3.141592 * m, 2.18281828)
25 xProps.PairII = (3, 2)
28 xProps.VectorOfPairsDD += [(0, 1), (1, 2), (2, 3), (3, 4)]
29 xProps.VectorOfPairsDD += [(4, 5), (5, 6), (6, 7), (7, 8)]
32 xProps.VectorOfVectorsString = [[
"a",
"b",
"c"], [
"A",
"B",
"C"]]
35 xProps.VectorOfVectorsDouble = [[0, 1, 2], [0, -0.5, -0.25]]
38 xProps.MapIntDouble = {1: 0.1, 2: 0.2, 3: 0.3}
41 xProps.MapStringString = {
42 'a':
'sddsgsgsdgdggf',
43 'b':
'sddsgsgsdgdggf',
48 xProps.MapStringInt = {
'a': 1,
'b': 2,
"c": 3}
51 xProps.MapStringDouble = {
'aa': 0.1,
'bb': 0.2,
"cc": 3}
54 xProps.MapStringVectorOfStrings = {
55 'aaa': [
'a',
'b',
'c'],
56 'bbb': [
'a',
'b',
'c'],
57 'ccc': [
'a',
'b',
'c']
61 xProps.MapStringVectorOfDoubles = {
64 'ccc': [0.1, 0.2, 0.3]
68 xProps.MapStringVectorOfInts = {
75 xProps.MapIntInt = {1: 10, 2: 20, 3: 30}
78 xProps.VectorOfPairsII = [(1, 1), (2, 1), (3, 2), (4, 3), (5, 5)]
81 xProps.MapIntString = {0:
"zero", 2:
"two", -1:
"minus one"}
84 xProps.MapUIntString = {0:
"UZero", 2:
"UTwo", 1:
"UOne"}
87 xProps.EmptyVector = []
89 xProps.TupleStringIntDouble = (
"hello", 10, 0.001)
90 xProps.TupleString = (
"hello", )
91 xProps.StdArrayDouble3 = (3.3, 2.2, 1.1)
92 xProps.StdArrayInt1 = (42, )
94 xProps.GaudiMapSS = {
'a':
'1',
'b':
'2'}
99 TopAlg=[xProps], EvtMax=1, EvtSel=
"NONE", HistogramPersistency=
"NONE")