File indexing completed on 2025-02-07 14:24:17
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def KFTrajectorySmootherESProducer(*args, **kwargs):
0004 mod = cms.ESProducer('KFTrajectorySmootherESProducer',
0005 ComponentName = cms.string('KFSmoother'),
0006 Propagator = cms.string('PropagatorWithMaterial'),
0007 Updator = cms.string('KFUpdator'),
0008 Estimator = cms.string('Chi2'),
0009 RecoGeometry = cms.string('GlobalDetLayerGeometry'),
0010 errorRescaling = cms.double(100),
0011 minHits = cms.int32(3),
0012 appendToDataLabel = cms.string('')
0013 )
0014 for a in args:
0015 mod.update_(a)
0016 mod.update_(kwargs)
0017 return mod