Skip to content
Snippets Groups Projects
Commit c69b60bf authored by Maarten Van Veghel's avatar Maarten Van Veghel
Browse files

adapt to new persistency locations

parent 2aeb929f
No related branches found
No related tags found
2 merge requests!1103Draft: Add AnalysisHelpers to DaVinci Stack,!926Adapt to split track container persistency
Showing
with 23 additions and 0 deletions
......@@ -14,3 +14,4 @@ input_process: Hlt2
input_stream: default
print_freq: 1000
input_raw_format: 0.5
persistency_locations_version: '1.0'
......@@ -16,3 +16,4 @@ geometry_version: trunk
python_logging_level: 3
output_level: 3
print_freq: 100
persistency_locations_version: '1.0'
......@@ -12,3 +12,4 @@ histo_file: sprucing_histos.root
ntuple_file: sprucing_tuple.root
input_raw_format: 0.5
input_process: Spruce
persistency_locations_version: '1.0'
......@@ -10,3 +10,4 @@ histo_file: sprucing_histos_olddst.root
ntuple_file: sprucing_tuple_olddst.root
input_raw_format: 0.3
input_process: Spruce
persistency_locations_version: '1.0'
......@@ -8,3 +8,4 @@ dddb_tag: dddb-20171126
conditions_version: master
geometry_version: trunk
input_process: Brunel
persistency_locations_version: '1.0'
......@@ -15,3 +15,4 @@ print_freq: 1
input_process: Hlt2
input_stream: default
evt_max: -1
persistency_locations_version: '1.0'
......@@ -5,3 +5,4 @@ simulation: true
conddb_tag: sim-20171127-vc-md100
dddb_tag: dddb-20171126
input_process: Brunel
persistency_locations_version: '1.0'
......@@ -13,3 +13,4 @@ histo_file: hlt2_B0_test_histo.root
lumi: false
ntuple_file: hlt2_B0_test_ntuple.root
input_process: Hlt2
persistency_locations_version: '1.0'
......@@ -12,3 +12,4 @@ histo_file: passthrough_histos.root
ntuple_file: passthrough_tuple.root
input_process: TurboPass
print_freq: 1000
persistency_locations_version: '1.0'
......@@ -12,3 +12,4 @@ histo_file: sprucing_mc_histos.root
ntuple_file: sprucing_mc_tuple.root
input_raw_format: 0.5
input_process: Spruce
persistency_locations_version: '1.0'
......@@ -13,3 +13,4 @@ evt_max: -1
write_fsr: False
print_freq: 1000
input_process: Hlt2
persistency_locations_version: '1.0'
......@@ -37,6 +37,7 @@
conditions_version: master
geometry_version: trunk
input_raw_format: 0.3
persistency_locations_version: '1.0'
lumi: false
ntuple_file: 'DV_example_allFunctors_ntp.root'
print_freq: 1
......
......@@ -29,6 +29,7 @@ options.evt_max = 100
options.histo_file = "DV-test-array-his.root"
options.ntuple_file = "DV-test-array-ntp.root"
options.input_process = "Spruce"
options.persistency_locations_version = "1.0"
bd2dsk_line = "SpruceB2OC_BdToDsmK_DsmToHHH_FEST_Line"
bd2dsk_data = get_particles(f"/Event/Spruce/{bd2dsk_line}/Particles")
......
......@@ -22,6 +22,7 @@
histo_file: DV-Histos_py-opts.root
lumi: False
input_process: Brunel
persistency_locations_version: '1.0'
</text></argument>
<argument name="use_temp_dir"><enumeral>true</enumeral></argument>
<argument name="validator"><text>
......
......@@ -22,6 +22,7 @@
histo_file: DV-Histos_yaml-opts.root
lumi: False
input_process: Brunel
persistency_locations_version: '1.0'
evt_max: 10
</text></argument>
<argument name="use_temp_dir"><enumeral>true</enumeral></argument>
......
......@@ -23,6 +23,7 @@
print_freq: 1
msg_svc_format: "% F%60W%S%7W%R%T %0W%M"
input_process: TurboPass
persistency_locations_version: '1.0'
</text></argument>
<argument name="timeout"><integer>3600</integer></argument>
<argument name="args"><set>
......
......@@ -20,6 +20,7 @@
<argument name="extra_options_yaml"><text>
evt_max: 200
input_process: Brunel
persistency_locations_version: '1.0'
write_decoding_keys_to_git: false
</text></argument>
<argument name="reference"><text>../refs/test_davinci_read_mc_ldst.ref</text></argument>
......
......@@ -24,6 +24,7 @@
print_freq: 1
msg_svc_format: "% F%60W%S%7W%R%T %0W%M"
input_process: Brunel
persistency_locations_version: '1.0'
</text></argument>
<argument name="validator"><text>
findReferenceBlock("""StdLooseD02KK INFO Number of counters : 7
......
......@@ -12,3 +12,4 @@ conddb_tag: sim-20180530-vc-md100
dddb_tag: dddb-20180815
conditions_version: master
geometry_version: trunk
persistency_locations_version: '1.0'
......@@ -15,6 +15,7 @@ from pydantic import root_validator # type: ignore[import]
from PyConf.reading import upfront_decoder, reconstruction # type: ignore[import]
from PyConf.reading import get_tes_root # type: ignore[import]
from PyConf.application import default_raw_event # type: ignore[import]
from PyConf.packing import persistency_locations_version # type: ignore[import]
import logging
......@@ -91,5 +92,8 @@ class Options(DefaultOptions):
)
reconstruction.global_bind(input_process=self.input_process)
get_tes_root.global_bind(input_process=self.input_process)
persistency_locations_version.global_bind(
version=self.persistency_locations_version
)
with super().apply_binds():
yield
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment