Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-01-21 01:39:34

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def SteppingHelixPropagatorESProducer(*args, **kwargs):
0004   mod = cms.ESProducer('SteppingHelixPropagatorESProducer',
0005     ComponentName = cms.string('SteppingHelixPropagator'),
0006     NoErrorPropagation = cms.bool(False),
0007     PropagationDirection = cms.string('alongMomentum'),
0008     useTuningForL2Speed = cms.bool(False),
0009     useIsYokeFlag = cms.bool(True),
0010     endcapShiftInZNeg = cms.double(0),
0011     SetVBFPointer = cms.bool(False),
0012     AssumeNoMaterial = cms.bool(False),
0013     endcapShiftInZPos = cms.double(0),
0014     useInTeslaFromMagField = cms.bool(False),
0015     VBFName = cms.string('VolumeBasedMagneticField'),
0016     useEndcapShiftsInZ = cms.bool(False),
0017     sendLogWarning = cms.bool(False),
0018     useMatVolumes = cms.bool(True),
0019     debug = cms.bool(False),
0020     ApplyRadX0Correction = cms.bool(True),
0021     useMagVolumes = cms.bool(True),
0022     returnTangentPlane = cms.bool(True),
0023     appendToDataLabel = cms.string('')
0024   )
0025   for a in args:
0026     mod.update_(a)
0027   mod.update_(kwargs)
0028   return mod