Skip to content
Snippets Groups Projects
Commit c270dfb5 authored by Savanna Shaw's avatar Savanna Shaw
Browse files

Switch off seeded decoding for full scan Run 2 muon triggers

Somehow the seeded decoding for the full scan muon triggers in the run 2 framework does not always decode the full detector, even though we are decoding an RoI that should cover the full detector. To get around this, will switch off the seeded decoding which by default does decode the full detector.
This matches what is done for the Run 3 trigger, which has the correct behaviour.
parent 65460177
No related branches found
No related tags found
No related merge requests found
...@@ -229,6 +229,10 @@ def TrigMuSuperEF_FSSA(name="TrigMuSuperEF_FSSA",**kwargs): ...@@ -229,6 +229,10 @@ def TrigMuSuperEF_FSSA(name="TrigMuSuperEF_FSSA",**kwargs):
kwargs.setdefault("MSonlyTrackParticleContName", "MuonEFInfo_MSonlyTrackParticles_FullScan") kwargs.setdefault("MSonlyTrackParticleContName", "MuonEFInfo_MSonlyTrackParticles_FullScan")
kwargs.setdefault("CBTrackParticleContName", "MuonEFInfo_CombTrackParticles_FullScan") kwargs.setdefault("CBTrackParticleContName", "MuonEFInfo_CombTrackParticles_FullScan")
kwargs.setdefault("MuonContName", "MuonEFInfo_FullScan" ) kwargs.setdefault("MuonContName", "MuonEFInfo_FullScan" )
#Turn off seeded decoding for full scan reconstruction
from AthenaCommon.CfgGetter import getPublicToolClone
kwargs.setdefault("TMEF_standaloneTrackTool", getPublicToolClone("TrigMuonEFStandaloneTrackToolFullScan", "TrigMuonEFStandaloneTrackTool",
useMdtSeededDecoding=False, useRpcSeededDecoding=False, useTgcSeededDecoding=False, useCscSeededDecoding=False))
return TrigMuSuperEF_FSCB(name,**kwargs) return TrigMuSuperEF_FSCB(name,**kwargs)
def TrigMuSuperEF_CTonly(name="TrigMuSuperEF_CTonly", **kwargs): def TrigMuSuperEF_CTonly(name="TrigMuSuperEF_CTonly", **kwargs):
......
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