1
2
3
4
5
6
7
8
9
|
import FWCore.ParameterSet.Config as cms
hltESPSmartPropagatorAnyOpposite = cms.ESProducer("SmartPropagatorESProducer",
ComponentName = cms.string('hltESPSmartPropagatorAnyOpposite'),
Epsilon = cms.double(5.0),
MuonPropagator = cms.string('SteppingHelixPropagatorAny'),
PropagationDirection = cms.string('oppositeToMomentum'),
TrackerPropagator = cms.string('PropagatorWithMaterialOpposite')
)
|