CMS 3D CMS Logo

LooperFitters_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 LooperTrajectoryFitter = TrackingTools.TrackFitters.KFTrajectoryFitter_cfi.KFTrajectoryFitter.clone(
5  ComponentName = 'LooperFitter',
6  Propagator = 'PropagatorWithMaterialForLoopers'
7 )
8 
10 LooperTrajectorySmoother = TrackingTools.TrackFitters.KFTrajectorySmoother_cfi.KFTrajectorySmoother.clone(
11  ComponentName = 'LooperSmoother',
12  Propagator = 'PropagatorWithMaterialForLoopers',
13  errorRescaling = 10.0,
14 )
15 
17 LooperFittingSmoother = TrackingTools.TrackFitters.KFFittingSmoother_cfi.KFFittingSmoother.clone(
18  ComponentName = 'LooperFittingSmoother',
19  Fitter = 'LooperFitter',
20  Smoother = 'LooperSmoother',
21  EstimateCut = 20.0,
22  # ggiurgiu@fnal.gov : Any value lower than -15 turns off this cut.
23  # Recommended default value: -14.0. This will reject only the worst hits with negligible loss in track efficiency.
24  LogPixelProbabilityCut = -14.0,
25  MinNumberOfHits = 3
26 )