1
2
3
4
5
6
7
8
9
10
11
12
|
import FWCore.ParameterSet.Config as cms
hltESPKFTrajectorySmootherForL2Muon = cms.ESProducer("KFTrajectorySmootherESProducer",
ComponentName = cms.string('hltESPKFTrajectorySmootherForL2Muon'),
Estimator = cms.string('hltESPChi2MeasurementEstimator30'),
Propagator = cms.string('hltESPFastSteppingHelixPropagatorOpposite'),
RecoGeometry = cms.string('hltESPDummyDetLayerGeometry'),
Updator = cms.string('hltESPKFUpdator'),
appendToDataLabel = cms.string(''),
errorRescaling = cms.double(100.0),
minHits = cms.int32(3)
)
|