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  MinNumberOfHits = 3
21 )
22 
23 KFFittingSmootherWithOutliersRejectionAndRK = RKFittingSmoother.clone(
24  ComponentName = 'KFFittingSmootherWithOutliersRejectionAndRK',
25  EstimateCut = 20.0,
26  MinNumberOfHits = 3
27 )