From 79b8c65da625be648f6a88f03667603ef9334107 Mon Sep 17 00:00:00 2001 From: Miroslav Date: Sat, 26 Jul 2025 15:35:50 +0200 Subject: [PATCH] Adding hlt1_pp_forward_then_matching_and_downstream_with_parkf_800kHz_M23 --- ...ng_and_downstream_with_parkf_800kHz_M23.py | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 configuration/python/AllenSequences/hlt1_pp_forward_then_matching_and_downstream_with_parkf_800kHz_M23.py diff --git a/configuration/python/AllenSequences/hlt1_pp_forward_then_matching_and_downstream_with_parkf_800kHz_M23.py b/configuration/python/AllenSequences/hlt1_pp_forward_then_matching_and_downstream_with_parkf_800kHz_M23.py new file mode 100644 index 00000000000..3bbf8fe75f2 --- /dev/null +++ b/configuration/python/AllenSequences/hlt1_pp_forward_then_matching_and_downstream_with_parkf_800kHz_M23.py @@ -0,0 +1,31 @@ +############################################################################### +# (c) Copyright 2021 CERN for the benefit of the LHCb Collaboration # +# # +# This software is distributed under the terms of the Apache License # +# version 2 (Apache-2.0), copied verbatim in the file "LICENSE". # +# # +# In applying this licence, CERN does not waive the privileges and immunities # +# granted to it by virtue of its status as an Intergovernmental Organization # +# or submit itself to any jurisdiction. # +############################################################################### +from AllenConf.HLT1 import setup_hlt1_node +from AllenCore.generator import generate +from AllenConf.enum_types import TrackingType +from AllenConf.get_thresholds import get_thresholds +from AllenConf.matching_reconstruction import make_velo_scifi_matches +from AllenConf.velo_reconstruction import make_pr_velo_tracks + +with make_velo_scifi_matches.bind( + ghost_killer_threshold=0.8), make_pr_velo_tracks.bind( + missing_modules=[21, 23]): + hlt1_node = setup_hlt1_node( + tracking_type=TrackingType.FORWARD_THEN_MATCHING, + threshold_settings=get_thresholds( + f"forward_then_matching_and_downstream_with_parkf_tuned_mu5p3_800kHz" + ), + with_ut=True, + enableDownstream=True, + with_fullKF=True, + ) + +generate(hlt1_node) -- GitLab