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 GsfTrackRefitter = cms.EDProducer("GsfTrackRefitter",
0004     src = cms.InputTag("pixelMatchGsfFit"),
0005     beamSpot = cms.InputTag("offlineBeamSpot"),
0006     Fitter = cms.string('GsfElectronFittingSmoother'),
0007     useHitsSplitting = cms.bool(False),
0008     TrajectoryInEvent = cms.bool(False),
0009     TTRHBuilder = cms.string('WithTrackAngle'),
0010     Propagator = cms.string('fwdGsfElectronPropagator'),
0011     constraint = cms.string(''),
0012     #set to "", the secondary hit pattern will not be filled (backward compatible with DetLayer=0)                               
0013     NavigationSchool = cms.string(''),
0014     MeasurementTracker = cms.string(''),
0015     MeasurementTrackerEvent = cms.InputTag('MeasurementTrackerEvent'),                   
0016 
0017     AlgorithmName = cms.string('gsf')
0018 )
0019 
0020