From 0238f5644ccec605330b29719d8f5027ee980746 Mon Sep 17 00:00:00 2001 From: Miroslav Saur Date: Fri, 20 Jun 2025 01:00:51 +0800 Subject: [PATCH 1/2] Adding exclusions for FSR --- Hlt/Moore/python/Moore/qmtest/exclusions.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Hlt/Moore/python/Moore/qmtest/exclusions.py b/Hlt/Moore/python/Moore/qmtest/exclusions.py index a5e6243503c..2b491131743 100644 --- a/Hlt/Moore/python/Moore/qmtest/exclusions.py +++ b/Hlt/Moore/python/Moore/qmtest/exclusions.py @@ -68,6 +68,9 @@ remove_known_warnings = LineSkipper( r".*Monitoring_Hlt1KsLine_InclKsKs.*WARNING.*Too many composites. Stopping the combination.*", # Warning due to Kalman fit observed in Allen!1444, to be resolved by Rec!3663 r"TrackBestTrackCreator_.*WARNING Kalman fit error, check debug level", + r"HltANNSvc.*WARNING key 0x[0-9a-f]+ has been found in FSR -- using that.*", + r"HltANNSvc.*WARNING ignoring key 0x[0-9a-f]+ from FSR because an explicit Overrule has been configured -- .*", + r"HltANNSvc.*WARNING ignoring key 0x[0-9a-f]+ from FSR because an explicit Overrule has been configured -- are you sure that Overrule is really needed?", ]) remove_known_packing_errors_and_warnings = remove_known_warnings + LineSkipper(regexps=[ -- GitLab From c98c29326e434072eff7ab3722e0c80cd101322a Mon Sep 17 00:00:00 2001 From: Miroslav Date: Fri, 18 Jul 2025 13:02:19 +0200 Subject: [PATCH 2/2] Adding 'write_decoding_keys_to_git' to spruce_example_realtime_extraoutputs.yaml and spruce_example_realtime_persistreco.yaml --- .../lbexec_yamls/spruce_example_realtime_extraoutputs.yaml | 3 ++- .../lbexec_yamls/spruce_example_realtime_persistreco.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Hlt/Hlt2Conf/options/sprucing/lbexec_yamls/spruce_example_realtime_extraoutputs.yaml b/Hlt/Hlt2Conf/options/sprucing/lbexec_yamls/spruce_example_realtime_extraoutputs.yaml index 792a1ffefe3..84cc8d99eaa 100644 --- a/Hlt/Hlt2Conf/options/sprucing/lbexec_yamls/spruce_example_realtime_extraoutputs.yaml +++ b/Hlt/Hlt2Conf/options/sprucing/lbexec_yamls/spruce_example_realtime_extraoutputs.yaml @@ -15,4 +15,5 @@ conddb_tag: sim-20231017-vc-mu100 output_file : 'spruce_realtimereco_extraoutputs.dst' output_type : 'ROOT' output_manifest_file : "spruce_example_realtime_extraoutputs.tck.json" -input_process: Hlt2 \ No newline at end of file +write_decoding_keys_to_git : True +input_process: Hlt2 diff --git a/Hlt/Hlt2Conf/options/sprucing/lbexec_yamls/spruce_example_realtime_persistreco.yaml b/Hlt/Hlt2Conf/options/sprucing/lbexec_yamls/spruce_example_realtime_persistreco.yaml index 73bf000dc70..a416c5a44cf 100644 --- a/Hlt/Hlt2Conf/options/sprucing/lbexec_yamls/spruce_example_realtime_persistreco.yaml +++ b/Hlt/Hlt2Conf/options/sprucing/lbexec_yamls/spruce_example_realtime_persistreco.yaml @@ -15,4 +15,5 @@ conddb_tag: sim-20231017-vc-mu100 output_file : 'spruce_realtimereco_persistreco.dst' output_type : 'ROOT' output_manifest_file : "spruce_example_realtime_persistreco.tck.json" -input_process: Hlt2 \ No newline at end of file +write_decoding_keys_to_git : True +input_process: Hlt2 -- GitLab