CMS 3D CMS Logo

TrackRefitter_38T_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 from Configuration.AlCa.GlobalTag import GlobalTag
7 
9 TrackRefitterForApeEstimator = RecoTracker.TrackProducer.TrackRefitter_cfi.TrackRefitter.clone(
10  src = "MuSkim",
11  TrajectoryInEvent = True,
12  TTRHBuilder = "WithAngleAndTemplate",
13  NavigationSchool = ''
14 )
15 
16 TrackRefitterHighPurityForApeEstimator = TrackRefitterForApeEstimator.clone(
17  src = 'HighPuritySelector'
18 )
19 
20 
21 
22 import Alignment.APEEstimation.AlignmentTrackSelector_cff
23 HighPuritySelector = Alignment.APEEstimation.AlignmentTrackSelector_cff.HighPuritySelector
24 HighPuritySelector.src = 'MuSkim'
25 
26 NoPuritySelector = Alignment.APEEstimation.AlignmentTrackSelector_cff.NoPuritySelector
27 NoPuritySelector.src = 'MuSkim'
28 
29 
30 
31 RefitterHighPuritySequence = cms.Sequence(
32  offlineBeamSpot*
33  HighPuritySelector*
34  TrackRefitterForApeEstimator
35 )
36 
37 RefitterNoPuritySequence = cms.Sequence(
38  offlineBeamSpot*
39  NoPuritySelector*
40  TrackRefitterForApeEstimator
41 )
42 
43 
44