CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RungeKutta1DFitters_cff.py
Go to the documentation of this file.
2 
4 RK1DTrajectoryFitter = TrackingTools.TrackFitters.KFTrajectoryFitterESProducer_cfi.KFTrajectoryFitter.clone(
5  ComponentName = cms.string('RK1DFitter'),
6  Propagator = cms.string('RungeKuttaTrackerPropagator'),
7  Updator = cms.string('KFSwitching1DUpdator')
8 )
9 
11 RK1DTrajectorySmoother = TrackingTools.TrackFitters.KFTrajectorySmootherESProducer_cfi.KFTrajectorySmoother.clone(
12  ComponentName = cms.string('RK1DSmoother'),
13  Propagator = cms.string('RungeKuttaTrackerPropagator'),
14  Updator = cms.string('KFSwitching1DUpdator')
15 )
16 
18 RK1DFittingSmoother = TrackingTools.TrackFitters.KFFittingSmootherESProducer_cfi.KFFittingSmoother.clone(
19  ComponentName = cms.string('RK1DFittingSmoother'),
20  Fitter = cms.string('RK1DFitter'),
21  Smoother = cms.string('RK1DSmoother')
22 )
23 
24 RKOutliers1DFittingSmoother = RK1DFittingSmoother.clone(
25  ComponentName = cms.string('RKOutliers1DFittingSmoother'),
26  EstimateCut = cms.double(20.0),
27  MinNumberOfHits = cms.int32(3),
28 )