Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004
00005
00006
00007
00008
00009
00010 from RecoLocalMuon.DTRecHit.DTParametrizedDriftAlgo_cfi import DTParametrizedDriftAlgo
00011
00012
00013 DTLPPatternReco2DAlgo_ParamDrift = cms.PSet(
00014 Reco2DAlgoConfig = cms.PSet(
00015
00016
00017 DTParametrizedDriftAlgo,
00018 performT0SegCorrection = cms.bool(False),
00019 hit_afterT0_resolution = cms.double(0.03),
00020 performT0_vdriftSegCorrection = cms.bool(False),
00021 debug = cms.untracked.bool(False),
00022
00023 DeltaFactor = cms.double(4.0),
00024 maxAlphaTheta = cms.double(0.1),
00025 maxAlphaPhi = cms.double(1.0),
00026 min_q = cms.double(-300.0),
00027 max_q = cms.double(300.0),
00028 bigM = cms.double(100.0),
00029 ),
00030 Reco2DAlgoName = cms.string('DTLPPatternReco')
00031 )
00032
00033
00034