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_condDBv2 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 ## FILTER for high purity tracks
22 import Alignment.APEEstimation.AlignmentTrackSelector_cff
23 HighPuritySelector = Alignment.APEEstimation.AlignmentTrackSelector_cff.HighPuritySelector
24 HighPuritySelector.src = 'MuSkim'
25 
26 
27 
28 ## SEQUENCE
29 
30 RefitterHighPuritySequence = cms.Sequence(
31  offlineBeamSpot*
32  HighPuritySelector*
33  TrackRefitterForApeEstimator
34 )
35 
36 
37