Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 from RecoMuon.TrackingTools.MuonSegmentMatcher_cff import *
00004
00005 CSCTimingExtractorBlock = cms.PSet(
00006 CSCTimingParameters = 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 CSCsegments = cms.InputTag("csc2DSegments"),
00015 PruneCut = cms.double(9.),
00016 CSCStripTimeOffset = cms.double(0.),
00017 CSCWireTimeOffset = cms.double(0.),
00018 CSCStripError = cms.double(7.0),
00019 CSCWireError = cms.double(8.6),
00020
00021 UseStripTime = cms.bool(True),
00022 UseWireTime = cms.bool(True),
00023 debug = cms.bool(False)
00024 )
00025 )
00026
00027