Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 from RecoMuon.TrackingTools.MuonSegmentMatcher_cff import *
00004
00005 DTTimingExtractorBlock = cms.PSet(
00006 DTTimingParameters = cms.PSet(
00007 MuonSegmentMatcher,
00008 ServiceParameters = cms.PSet(
00009 Propagators = cms.untracked.vstring('SteppingHelixPropagatorAny',
00010 'PropagatorWithMaterial',
00011 'PropagatorWithMaterialOpposite'),
00012 RPCLayers = cms.bool(True)
00013 ),
00014 DTsegments = cms.InputTag("dt4DSegments"),
00015 PruneCut = cms.double(10000.),
00016 DTTimeOffset = cms.double(0.),
00017 HitError = cms.double(6.0),
00018 HitsMin = cms.int32(3),
00019 UseSegmentT0 = cms.bool(False),
00020 DoWireCorr = cms.bool(True),
00021 DropTheta = cms.bool(True),
00022 RequireBothProjections = cms.bool(False),
00023 debug = cms.bool(False),
00024 )
00025 )
00026
00027