CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RecoTracker_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 # Iterative steps
7 
8 
9 import copy
10 
11 #dEdX reconstruction
13 
14 #BeamHalo tracking
16 
17 
18 #special sequences, such as pixel-less
20 
21 ckftracks_woBH = cms.Sequence(iterTracking*electronSeedsSeq*doAlldEdXEstimators)
22 ckftracks = ckftracks_woBH.copy() #+ beamhaloTracksSeq) # temporarily out, takes too much resources
23 
24 ckftracks_wodEdX = ckftracks.copy()
25 ckftracks_wodEdX.remove(doAlldEdXEstimators)
26 
27 
28 ckftracks_plus_pixelless = cms.Sequence(ckftracks*ctfTracksPixelLess)
29 
30 
32 trackingGlobalReco = cms.Sequence(ckftracks*trackExtrapolator)