Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:27:17

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 MuonUpdatorAtVertex = cms.PSet(
0004     MuonUpdatorAtVertexParameters = cms.PSet(
0005         MaxChi2 = cms.double(1000000.0),
0006         Propagator = cms.string('SteppingHelixPropagatorOpposite'),
0007         BeamSpotPositionErrors = cms.vdouble(0.1, 0.1, 5.3)
0008     )
0009 )
0010 MuonUpdatorAtVertexAnyDirection = cms.PSet(
0011     MuonUpdatorAtVertexParameters = cms.PSet(
0012         MaxChi2 = cms.double(1000000.0),
0013         Propagator = cms.string('SteppingHelixPropagatorAny'),
0014         BeamSpotPositionErrors = cms.vdouble(0.1, 0.1, 5.3)
0015     )
0016 )
0017 
0018