Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:24:17

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def PropagatorWithMaterialESProducer(*args, **kwargs):
0004   mod = cms.ESProducer('PropagatorWithMaterialESProducer',
0005     PropagationDirection = cms.required.string,
0006     SimpleMagneticField = cms.string(''),
0007     ComponentName = cms.required.string,
0008     Mass = cms.required.double,
0009     MaxDPhi = cms.required.double,
0010     useRungeKutta = cms.required.bool,
0011     useOldAnalPropLogic = cms.bool(True),
0012     ptMin = cms.double(-1),
0013     appendToDataLabel = cms.string('')
0014   )
0015   for a in args:
0016     mod.update_(a)
0017   mod.update_(kwargs)
0018   return mod