Skip to content
Snippets Groups Projects
Commit a2578f5a authored by Duc Ta's avatar Duc Ta
Browse files

Merge branch 'TrkLowMu_fix' into '24.0'

Fix LowMu tracking config

See merge request !71607
parents 5e570785 38dfb55b
No related branches found
No related tags found
2 merge requests!716942024-05-24: merge of 24.0 into main,!71607Fix LowMu tracking config
# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
from AthenaConfiguration.Enums import BeamType
......@@ -66,7 +66,7 @@ def TRT_TrackSegment_Cfg(flags):
from InDetConfig.TRT_StandaloneTrackFinderConfig import (
TRT_TrackSegment_TrackFinderCfg)
acc.merge(TRT_TrackSegment_TrackFinderCfg(flags,
InputSegmentsCollection = 'TRTSegmentsTRT'))
InputSegmentsLocation = 'TRTSegmentsTRT'))
return acc
......
......@@ -18,7 +18,10 @@ def CombinedTrackingPassFlagSets(flags):
# Primary Pass
flags = flags.cloneAndReplace(
"Tracking.ActiveConfig",
f"Tracking.{flags.Tracking.PrimaryPassConfig.value}Pass")
f"Tracking.{flags.Tracking.PrimaryPassConfig.value}Pass",
# Keep original flags as some of the subsequent passes use
# lambda functions relying on them
keepOriginal=True)
flags_set += [flags]
# LRT pass
......
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