ATLAS Offline Software
SampleStrategy.py
Go to the documentation of this file.
1 
7 
8 from MuonTrackSteeringTools.MuonTrackSteeringToolsConf import Muon__MuPatCandidateTool
9 mpct = Muon__MuPatCandidateTool()
10 ToolSvc += mpct
11 
12 from MuonRecHelperTools.MuonRecHelperToolsConf import Muon__MuonEDMHelperSvc
13 mehs = Muon__MuonEDMHelperSvc()
14 ToolSvc += mehs
15 
16 from MuonTrackSteeringTools.MuonTrackSteeringToolsConf import Muon__MuonTrackSteering
17 mtst = Muon__MuonTrackSteering()
18 
19 mtst.SegSeedQCut = 1
20 mtst.Seg2ndQCut = 0
21 
22 # Allowed options for the strategy currently are:
23 # CutSeedsOnTracks
24 # CombineSegInStation
25 # DynamicSeeding
26 # PreferOutsideIn
27 # AllowOneSharedHit
28 
29 simpleStrategy = [
30  "BarrelSmall[]:BMS;BOS;BIS" ,
31  "BarrelLarge[]:BML;BOL;BIL" ,
32  "EndcapSmall[]:EMS;EOS;EIS" ,
33  "EndcapLarge[]:EML;EOL;EIL" ]
34 
35 mtst.StrategyList = simpleStrategy
36