Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 OppositeMaterialPropagator = cms.ESProducer("PropagatorWithMaterialESProducer",
0004     SimpleMagneticField = cms.string(""),
0005     MaxDPhi = cms.double(1.6),
0006     ComponentName = cms.string('PropagatorWithMaterialOpposite'),
0007     Mass = cms.double(0.105),
0008     PropagationDirection = cms.string('oppositeToMomentum'),
0009     useRungeKutta = cms.bool(False),
0010 # If ptMin > 0, uncertainty in reconstructed momentum will be taken into account when estimating rms scattering angle.
0011 # (By default, it is neglected). However, it will also be assumed that the track pt can't be below specified value,
0012 # to prevent this scattering angle becoming too big.                                    
0013     ptMin = cms.double(-1.)
0014 )
0015 
0016