CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/RecoTracker/TrackProducer/python/TrackProducer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 TrackProducer = cms.EDProducer("TrackProducer",
00004     src = cms.InputTag("ckfTrackCandidates"),
00005     clusterRemovalInfo = cms.InputTag(""),
00006     beamSpot = cms.InputTag("offlineBeamSpot"),
00007     Fitter = cms.string('KFFittingSmootherWithOutliersRejectionAndRK'),
00008     useHitsSplitting = cms.bool(False),
00009     alias = cms.untracked.string('ctfWithMaterialTracks'),
00010     TrajectoryInEvent = cms.bool(True),
00011     TTRHBuilder = cms.string('WithAngleAndTemplate'),
00012     AlgorithmName = cms.string('undefAlgorithm'),
00013     Propagator = cms.string('RungeKuttaTrackerPropagator'),
00014 
00015     # this parameter decides if the propagation to the beam line
00016     # for the track parameters defiition is from the first hit
00017     # or from the closest to the beam line
00018     # true for cosmics/beam halo, false for collision tracks (needed by loopers)
00019     GeometricInnerState = cms.bool(False),
00020 
00021     ### These are paremeters related to the filling of the Secondary hit-patterns                               
00022     #set to "", the secondary hit pattern will not be filled (backward compatible with DetLayer=0)    
00023     NavigationSchool = cms.string('SimpleNavigationSchool'),          
00024     MeasurementTracker = cms.string('')                   
00025 )
00026 
00027 
00028