CMS 3D CMS Logo

PropagatorWithMaterialForMTD_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 PropagatorWithMaterialForMTD = cms.ESProducer(
4  "PropagatorWithMaterialESProducer",
5  MaxDPhi = cms.double(1.6), #default was 1.6
6  ComponentName = cms.string('PropagatorWithMaterialForMTD'),
7  Mass = cms.double(0.13957018), #default was 0.105
8  PropagationDirection = cms.string('anyDirection'),
9  useRungeKutta = cms.bool(False),
10  ptMin = cms.double(0.1),
11  useOldAnalPropLogic = cms.bool(False)
12 )
13