diff --git a/config/daqsystemtest/connections.data.xml b/config/daqsystemtest/connections.data.xml index ffd4cd8..f56816a 100644 --- a/config/daqsystemtest/connections.data.xml +++ b/config/daqsystemtest/connections.data.xml @@ -63,7 +63,7 @@ - + @@ -74,6 +74,7 @@ + @@ -258,6 +259,16 @@ + + + + + + + + + + @@ -313,6 +324,20 @@ + + + + + + + + + + + + + + diff --git a/config/daqsystemtest/moduleconfs.data.xml b/config/daqsystemtest/moduleconfs.data.xml index 5fb598f..0cb78c4 100644 --- a/config/daqsystemtest/moduleconfs.data.xml +++ b/config/daqsystemtest/moduleconfs.data.xml @@ -139,7 +139,7 @@ - + @@ -147,7 +147,7 @@ - + @@ -225,20 +225,12 @@ - - - - - - - - + + - - - - + + @@ -267,17 +259,17 @@ - + - + - + - + @@ -745,14 +737,10 @@ - - - - diff --git a/config/daqsystemtest/ru-segment.data.xml b/config/daqsystemtest/ru-segment.data.xml index 3fe8bf9..f8482b3 100644 --- a/config/daqsystemtest/ru-segment.data.xml +++ b/config/daqsystemtest/ru-segment.data.xml @@ -63,13 +63,14 @@ - + + @@ -103,10 +104,11 @@ + - + @@ -117,14 +119,14 @@ - - - - + + + + + - + - @@ -158,7 +160,17 @@ - + + + + + + + + + + + @@ -166,6 +178,11 @@ + + + + + @@ -202,12 +219,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -300,13 +357,6 @@ - - - - - - - @@ -330,7 +380,25 @@ - + + + + + + + + + + + + + + + + + + + @@ -486,7 +554,7 @@ - + @@ -504,23 +572,44 @@ - + - - + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/docs/bundle_script_overview.md b/docs/bundle_script_overview.md index aa80548..3bca4d6 100644 --- a/docs/bundle_script_overview.md +++ b/docs/bundle_script_overview.md @@ -112,7 +112,7 @@ The following tests will be run: The following tests will be run: asiolibs/socket_reader_test.py - crtmodules/crt_reader_test.py + crtmodules/crt_frame_builder_test.py (dbt) [biery@daq]$ dunedaq_integtest_bundle.sh -r local -k tp --list-only @@ -143,7 +143,7 @@ The following tests will be run: Looking for integtests in _all_ repos... asiolibs/socket_reader_test.py -crtmodules/crt_reader_test.py +crtmodules/crt_frame_builder_test.py daqsystemtest/3ru_1df_multirun_test.py daqsystemtest/3ru_3df_multirun_test.py daqsystemtest/example_system_test.py @@ -205,7 +205,7 @@ dfmodules/trmonrequestor_test.py Looking for integtests in the _asiolibs crtmodules_ repo(s)... asiolibs/socket_reader_test.py -crtmodules/crt_reader_test.py +crtmodules/crt_frame_builder_test.py (dbt) [biery@daq]$ list_available_integtests.sh asdf jklp diff --git a/integtest/readout_type_scan_test.py b/integtest/readout_type_scan_test.py index 640540e..a843ce1 100644 --- a/integtest/readout_type_scan_test.py +++ b/integtest/readout_type_scan_test.py @@ -355,11 +355,24 @@ bern_crt_conf = copy.deepcopy(conf_dict) bern_crt_conf.dro_map_config.det_id = 12 bern_crt_conf.frame_file = "asset://?checksum=dd156b4895f1b06a06b6ff38e37bd798" # WIBEth All Zeros +bern_crt_conf.config_substitutions.append( + data_classes.attribute_substitution( + obj_class="RandomTCMakerConf", + obj_id="random-tc-generator", + updates={"candidate_window_before_ts": 8000, "candidate_window_after_ts": 10}, + ) +) grenoble_crt_conf = copy.deepcopy(conf_dict) grenoble_crt_conf.dro_map_config.det_id = 13 grenoble_crt_conf.frame_file = "asset://?checksum=dd156b4895f1b06a06b6ff38e37bd798" # WIBEth All Zeros - +grenoble_crt_conf.config_substitutions.append( + data_classes.attribute_substitution( + obj_class="RandomTCMakerConf", + obj_id="random-tc-generator", + updates={"candidate_window_before_ts": 8000, "candidate_window_after_ts": 10}, + ) +) confgen_arguments = { "WIBEth_System": wibeth_conf,