Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:00

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 TrackProducer = cms.EDProducer("TrackProducer",
0004     useSimpleMF = cms.bool(False),
0005     SimpleMagneticField = cms.string(""),
0006     src = cms.InputTag("ckfTrackCandidates"),
0007     clusterRemovalInfo = cms.InputTag(""),
0008     beamSpot = cms.InputTag("offlineBeamSpot"),
0009     Fitter = cms.string('KFFittingSmootherWithOutliersRejectionAndRK'),
0010     useHitsSplitting = cms.bool(False),
0011     alias = cms.untracked.string('ctfWithMaterialTracks'),
0012     TrajectoryInEvent = cms.bool(False),
0013     TTRHBuilder = cms.string('WithAngleAndTemplate'),
0014     AlgorithmName = cms.string('undefAlgorithm'),
0015     Propagator = cms.string('RungeKuttaTrackerPropagator'),
0016 
0017     # this parameter decides if the propagation to the beam line
0018     # for the track parameters defiition is from the first hit
0019     # or from the closest to the beam line
0020     # true for cosmics/beam halo, false for collision tracks (needed by loopers)
0021     GeometricInnerState = cms.bool(False),
0022 
0023     ### These are paremeters related to the filling of the Secondary hit-patterns                               
0024     #set to "", the secondary hit pattern will not be filled (backward compatible with DetLayer=0)    
0025     NavigationSchool = cms.string('SimpleNavigationSchool'),          
0026     MeasurementTracker = cms.string(''),
0027     MeasurementTrackerEvent = cms.InputTag('MeasurementTrackerEvent'),                   
0028 )