CMS 3D CMS Logo

RungeKutta1DFitters_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 RK1DTrajectoryFitter = TrackingTools.TrackFitters.KFTrajectoryFitter_cfi.KFTrajectoryFitter.clone(
5  ComponentName = 'RK1DFitter',
6  Propagator = 'RungeKuttaTrackerPropagator',
7  Updator = 'KFSwitching1DUpdator'
8 )
9 
11 RK1DTrajectorySmoother = TrackingTools.TrackFitters.KFTrajectorySmoother_cfi.KFTrajectorySmoother.clone(
12  ComponentName = 'RK1DSmoother',
13  Propagator = 'RungeKuttaTrackerPropagator',
14  Updator = 'KFSwitching1DUpdator'
15 )
16 
18 RK1DFittingSmoother = TrackingTools.TrackFitters.KFFittingSmoother_cfi.KFFittingSmoother.clone(
19  ComponentName = 'RK1DFittingSmoother',
20  Fitter = 'RK1DFitter',
21  Smoother = 'RK1DSmoother'
22 )
23 
24 RKOutliers1DFittingSmoother = RK1DFittingSmoother.clone(
25  ComponentName = 'RKOutliers1DFittingSmoother',
26  EstimateCut = 20.0,
27  MinNumberOfHits = 3,
28 )