Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:51

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 PropagatorWithMaterialForMTD = cms.ESProducer(
0004     "PropagatorWithMaterialESProducer",
0005     MaxDPhi = cms.double(1.6),     #default was 1.6
0006     ComponentName = cms.string('PropagatorWithMaterialForMTD'),
0007     Mass = cms.double(0.13957018),     #default was 0.105
0008     PropagationDirection = cms.string('anyDirection'),
0009     useRungeKutta = cms.bool(False),           
0010     ptMin = cms.double(0.1),
0011     useOldAnalPropLogic = cms.bool(False)
0012 )
0013