CMS 3D CMS Logo

RungeKuttaFitters_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 RKTrajectoryFitter = TrackingTools.TrackFitters.KFTrajectoryFitter_cfi.KFTrajectoryFitter.clone(
5  ComponentName = 'RKFitter',
6  Propagator = 'RungeKuttaTrackerPropagator'
7 )
8 
10 RKTrajectorySmoother = TrackingTools.TrackFitters.KFTrajectorySmoother_cfi.KFTrajectorySmoother.clone(
11  ComponentName = 'RKSmoother',
12  Propagator = 'RungeKuttaTrackerPropagator'
13 )
14 
16 RKFittingSmoother = TrackingTools.TrackFitters.KFFittingSmoother_cfi.KFFittingSmoother.clone(
17  ComponentName = 'RKFittingSmoother',
18  Fitter = 'RKFitter',
19  Smoother = 'RKSmoother'
20 )
21 
22 KFFittingSmootherWithOutliersRejectionAndRK = RKFittingSmoother.clone(
23  ComponentName = 'KFFittingSmootherWithOutliersRejectionAndRK',
24  EstimateCut = 20.0,
25  MinNumberOfHits = 3
26 )