From ad694174023f112c4cdd34913ca8bafca17600ac Mon Sep 17 00:00:00 2001
From: Mark Owen <mark.andrew.owen@cern.ch>
Date: Wed, 17 Apr 2019 10:10:00 +0100
Subject: [PATCH] Minor python fixes in MuonSetup

---
 .../TriggerMenuMT/python/HLTMenuConfig/Muon/MuonSetup.py       | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/HLTMenuConfig/Muon/MuonSetup.py b/Trigger/TriggerCommon/TriggerMenuMT/python/HLTMenuConfig/Muon/MuonSetup.py
index efcc6bc03af..d99155e5d34 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/HLTMenuConfig/Muon/MuonSetup.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/HLTMenuConfig/Muon/MuonSetup.py
@@ -421,7 +421,6 @@ def muEFSARecoSequence( RoIs, name ):
   ( eventAlgs_MuonPRD, viewAlgs_MuonPRD ) = makeMuonPrepDataAlgs( name == 'FS')
 
   # setup RDO preparator algorithms 
-  from AthenaCommon import CfgMgr
   if name != 'FS':
     # we now try to share the MDT data preparation algorithm with L2, so we tell the view that it should expect the MDT PRDs to be available
     efAlgs.append( CfgMgr.AthViews__ViewDataVerifier(name = "EFMuonViewDataVerifier",
@@ -430,7 +429,7 @@ def muEFSARecoSequence( RoIs, name ):
   for viewAlg_MuonPRD in viewAlgs_MuonPRD:
     # we now try to share the MDT data preparation algorithm with L2, so only add the MDT algo if we are running full-scane
     # this is slightly ugly, should be improved in new JO setup
-    if not 'Mdt' in viewAlg_MuonPRD.name() or name == 'FS':
+    if 'Mdt' not in viewAlg_MuonPRD.name() or name == 'FS':
       efAlgs.append( viewAlg_MuonPRD )
    
   from TrkDetDescrSvc.TrkDetDescrSvcConf import Trk__TrackingVolumesSvc
-- 
GitLab