File indexing completed on 2022-11-25 00:27:18
0001 import FWCore.ParameterSet.Config as cms
0002
0003 KFFittingSmoother = cms.ESProducer('KFFittingSmootherESProducer',
0004 ComponentName = cms.string('KFFittingSmoother'),
0005 Fitter = cms.string('KFFitter'),
0006 Smoother = cms.string('KFSmoother'),
0007 EstimateCut = cms.double(-1),
0008 MaxFractionOutliers = cms.double(0.3),
0009 MaxNumberOfOutliers = cms.int32(3),
0010 MinDof = cms.int32(2),
0011 NoOutliersBeginEnd = cms.bool(False),
0012 MinNumberOfHits = cms.int32(5),
0013 MinNumberOfHitsHighEta = cms.int32(5),
0014 HighEtaSwitch = cms.double(5),
0015 RejectTracks = cms.bool(True),
0016 BreakTrajWith2ConsecutiveMissing = cms.bool(True),
0017 NoInvalidHitsBeginEnd = cms.bool(True),
0018 LogPixelProbabilityCut = cms.double(0),
0019 appendToDataLabel = cms.string('')
0020 )