Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:44

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 SteppingHelixPropagator = cms.ESProducer("SteppingHelixPropagatorESProducer",
0004     ComponentName = cms.string('SteppingHelixPropagator'),
0005     NoErrorPropagation = cms.bool(False),
0006     PropagationDirection = cms.string('alongMomentum'),
0007     useTuningForL2Speed = cms.bool(False),
0008     useIsYokeFlag = cms.bool(True),
0009     endcapShiftInZNeg = cms.double(0.0),
0010     SetVBFPointer = cms.bool(False),
0011     AssumeNoMaterial = cms.bool(False),
0012     endcapShiftInZPos = cms.double(0.0),
0013     useInTeslaFromMagField = cms.bool(False),
0014     VBFName = cms.string('VolumeBasedMagneticField'),
0015     useEndcapShiftsInZ = cms.bool(False),
0016     sendLogWarning = cms.bool(False),
0017     useMatVolumes = cms.bool(True),
0018     debug = cms.bool(False),
0019     #This sort of works but assumes a measurement at propagation origin  
0020     ApplyRadX0Correction = cms.bool(True),
0021     useMagVolumes = cms.bool(True),
0022     returnTangentPlane = cms.bool(True)
0023 )
0024 
0025