CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GsfTrackRefitter_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 GsfTrackRefitter = cms.EDProducer("GsfTrackRefitter",
4  src = cms.InputTag("pixelMatchGsfFit"),
5  beamSpot = cms.InputTag("offlineBeamSpot"),
6  Fitter = cms.string('GsfElectronFittingSmoother'),
7  useHitsSplitting = cms.bool(False),
8  TrajectoryInEvent = cms.bool(False),
9  TTRHBuilder = cms.string('WithTrackAngle'),
10  Propagator = cms.string('fwdGsfElectronPropagator'),
11  constraint = cms.string(''),
12  #set to "", the secondary hit pattern will not be filled (backward compatible with DetLayer=0)
13  NavigationSchool = cms.string(''),
14  MeasurementTracker = cms.string(''),
15  MeasurementTrackerEvent = cms.InputTag('MeasurementTrackerEvent'),
16 
17  AlgorithmName = cms.string('gsf')
18 )
19 
20