File indexing completed on 2024-04-06 12:26:07
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004
0005
0006
0007
0008
0009
0010 from RecoLocalMuon.DTRecHit.DTParametrizedDriftAlgo_cfi import DTParametrizedDriftAlgo
0011
0012
0013 DTLPPatternReco2DAlgo_ParamDrift = cms.PSet(
0014 Reco2DAlgoConfig = cms.PSet(
0015
0016
0017 DTParametrizedDriftAlgo,
0018 performT0SegCorrection = cms.bool(False),
0019 hit_afterT0_resolution = cms.double(0.03),
0020 performT0_vdriftSegCorrection = cms.bool(False),
0021 debug = cms.untracked.bool(False),
0022
0023 DeltaFactor = cms.double(4.0),
0024 maxAlphaTheta = cms.double(0.1),
0025 maxAlphaPhi = cms.double(1.0),
0026 min_q = cms.double(-300.0),
0027 max_q = cms.double(300.0),
0028 bigM = cms.double(100.0),
0029 ),
0030 Reco2DAlgoName = cms.string('DTLPPatternReco')
0031 )
0032
0033
0034