42 """the configurtaion of the job"""
49 gaudi.config(files=[
"../options/Common.opts"])
53 gaudi.TopAlg = [
"ExtendedProperties/xProps"]
55 gaudi.HistogramPersistency =
"NONE"
57 xProps = gaudi.algorithm(
"xProps")
65 xProps.VectorOfPairsDD = [(0, 1), (1, 2), (2, 3), (3, 4)]
68 xProps.VectorOfVectorsString = [[
"a",
"b",
"c"], [
"A",
"B",
"C"]]
71 xProps.VectorOfVectorsDouble = [[0, 1, 2], [0, -0.5, -0.25]]
74 xProps.MapIntDouble = {1: 0.1, 2: 0.2, 3: 0.3}
77 xProps.MapStringString = {
78 "a":
"sddsgsgsdgdggf",
79 "b":
"sddsgsgsdgdggf",
80 "c":
"sddsgsgsdgdggf",
84 xProps.MapStringInt = {
"a": 1,
"b": 2,
"c": 3}
87 xProps.MapStringDouble = {
"aa": 0.1,
"bb": 0.2,
"cc": 3}
90 xProps.MapStringVectorOfStrings = {
91 "aaa": [
"a",
"b",
"c"],
92 "bbb": [
"a",
"b",
"c"],
93 "ccc": [
"a",
"b",
"c"],
97 xProps.MapStringVectorOfDoubles = {
99 "bbb": [1.0, 2.0, 3.0],
100 "ccc": [0.1, 0.2, 0.3],
104 xProps.MapStringVectorOfInts = {