Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 import TrackingTools.TrackFitters.KFTrajectoryFitterESProducer_cfi
00004 LooperTrajectoryFitter = TrackingTools.TrackFitters.KFTrajectoryFitterESProducer_cfi.KFTrajectoryFitter.clone(
00005 ComponentName = cms.string('LooperFitter'),
00006 Propagator = cms.string('PropagatorWithMaterialForLoopers')
00007 )
00008
00009 import TrackingTools.TrackFitters.KFTrajectorySmootherESProducer_cfi
00010 LooperTrajectorySmoother = TrackingTools.TrackFitters.KFTrajectorySmootherESProducer_cfi.KFTrajectorySmoother.clone(
00011 ComponentName = cms.string('LooperSmoother'),
00012 Propagator = cms.string('PropagatorWithMaterialForLoopers'),
00013 errorRescaling = cms.double(10.0),
00014 )
00015
00016 import TrackingTools.TrackFitters.KFFittingSmootherESProducer_cfi
00017 LooperFittingSmoother = TrackingTools.TrackFitters.KFFittingSmootherESProducer_cfi.KFFittingSmoother.clone(
00018 ComponentName = cms.string('LooperFittingSmoother'),
00019 Fitter = cms.string('LooperFitter'),
00020 Smoother = cms.string('LooperSmoother'),
00021 EstimateCut = cms.double(20.0),
00022
00023
00024 LogPixelProbabilityCut = cms.double(-14.0),
00025 MinNumberOfHits = cms.int32(3)
00026 )
00027