Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 DTTimingExtractorBlock = cms.PSet(
0004   DTTimingParameters = cms.PSet(
0005     ServiceParameters = cms.PSet(
0006         Propagators = cms.untracked.vstring('SteppingHelixPropagatorAny', 
0007             'PropagatorWithMaterial', 
0008             'PropagatorWithMaterialOpposite'),
0009         RPCLayers = cms.bool(True)
0010     ),
0011     PruneCut = cms.double(5.),
0012     DTTimeOffset = cms.double(0.),
0013     HitError  = cms.double(2.8),
0014     HitsMin = cms.int32(3),
0015     UseSegmentT0 = cms.bool(False),
0016     DoWireCorr = cms.bool(True),
0017     DropTheta = cms.bool(True),
0018     RequireBothProjections = cms.bool(False),
0019     debug = cms.bool(False),
0020   )
0021 )
0022 
0023