Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-01-18 03:42:23

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from RecoTracker.TrackProducer.gsfTrackRefitter_cfi import gsfTrackRefitter
0004 GsfTrackRefitter = gsfTrackRefitter.clone(
0005     src = "pixelMatchGsfFit",
0006     beamSpot = "offlineBeamSpot",
0007     Fitter = "GsfElectronFittingSmoother",
0008     useHitsSplitting = False,
0009     TrajectoryInEvent = False,
0010     TTRHBuilder = "WithTrackAngle",
0011     Propagator = "fwdGsfElectronPropagator",
0012     constraint = '',
0013     #set to "", the secondary hit pattern will not be filled (backward compatible with DetLayer=0)
0014     NavigationSchool = '',
0015     MeasurementTracker = '',
0016     MeasurementTrackerEvent = 'MeasurementTrackerEvent',
0017     AlgorithmName = 'gsf'
0018 )
0019 
0020