Skip to content
Snippets Groups Projects
Commit 50e00adf authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'trig-nsw' into 'master'

Adapt late muon trigger configuration to use NSW

Closes ATR-21830

See merge request atlas/athena!35504
parents 284ca85a 3542bac6
No related branches found
No related tags found
No related merge requests found
......@@ -775,6 +775,7 @@ def muEFInsideOutRecoSequence(RoIs, name):
from MuonRecExample.MuonStandalone import MooSegmentFinderAlg
from MuonCombinedRecExample.MuonCombinedAlgs import MuonCombinedInDetCandidateAlg, MuonInsideOutRecoAlg, MuGirlStauAlg, MuonCreatorAlg, StauCreatorAlg
from MuonCombinedAlgs.MuonCombinedAlgsMonitoring import MuonCreatorAlgMonitoring
from MuonRecExample.MuonRecFlags import muonRecFlags
efAlgs = []
......@@ -789,6 +790,7 @@ def muEFInsideOutRecoSequence(RoIs, name):
#need MdtCondDbAlg for the MuonStationIntersectSvc (required by segment and track finding)
from AthenaCommon.AlgSequence import AthSequencer
from MuonCondAlg.MuonTopCondAlgConfigRUN2 import MdtCondDbAlg
import AthenaCommon.CfgGetter as CfgGetter
if not athenaCommonFlags.isOnline:
condSequence = AthSequencer("AthCondSeq")
if not hasattr(condSequence,"MdtCondDbAlg"):
......@@ -796,8 +798,34 @@ def muEFInsideOutRecoSequence(RoIs, name):
# Sets up and configures the muon alignment:
from MuonRecExample import MuonAlignConfig # noqa: F401
theSegmentFinderAlg = MooSegmentFinderAlg("TrigLateMuonSegmentMaker_"+name)
efAlgs.append(theSegmentFinderAlg)
if (MuonGeometryFlags.hasSTGC() and MuonGeometryFlags.hasMM()):
theMuonLayerHough = CfgMgr.MuonLayerHoughAlg( "MuonLayerHoughAlg")
efAlgs.append(theMuonLayerHough)
SegmentFinder = CfgGetter.getPublicTool("MuonClusterSegmentFinderTool")
Cleaner = CfgGetter.getPublicToolClone("MuonTrackCleaner_seg","MuonTrackCleaner")
Cleaner.Extrapolator = CfgGetter.getPublicTool("MuonStraightLineExtrapolator")
Cleaner.Fitter = CfgGetter.getPublicTool("MCTBSLFitterMaterialFromTrack")
Cleaner.PullCut = 3
Cleaner.PullCutPhi = 3
SegmentFinder.TrackCleaner = Cleaner
theSegmentFinderAlg = CfgMgr.MuonSegmentFinderAlg( "TrigMuonSegmentMaker_"+name,SegmentCollectionName="MuonSegments",
MuonPatternCalibration = CfgGetter.getPublicTool("MuonPatternCalibration"),
MuonPatternSegmentMaker = CfgGetter.getPublicTool("MuonPatternSegmentMaker"),
MuonTruthSummaryTool = None)
# we check whether the layout contains any CSC chamber and if yes, we check that the user also wants to use the CSCs in reconstruction
if MuonGeometryFlags.hasCSC() and muonRecFlags.doCSCs():
CfgGetter.getPublicTool("CscSegmentUtilTool")
CfgGetter.getPublicTool("Csc2dSegmentMaker")
CfgGetter.getPublicTool("Csc4dSegmentMaker")
else:
theSegmentFinderAlg.Csc2dSegmentMaker = ""
theSegmentFinderAlg.Csc4dSegmentMaker = ""
else:
theSegmentFinderAlg = MooSegmentFinderAlg("TrigLateMuonSegmentMaker_"+name)
efAlgs.append(theSegmentFinderAlg)
# need to run precisions tracking for late muons, since we don't run it anywhere else
TrackCollection="TrigFastTrackFinder_Tracks_MuonLate"
......
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