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.DTLinearDriftAlgo_cfi import *
0011 DTCombinatorialPatternReco2DAlgo_LinearDrift = cms.PSet(
0012 Reco2DAlgoConfig = cms.PSet(
0013
0014
0015 DTLinearDriftAlgo,
0016 AlphaMaxPhi = cms.double(1.0),
0017 AlphaMaxTheta = cms.double(0.9),
0018 MaxAllowedHits = cms.uint32(50),
0019 debug = cms.untracked.bool(False),
0020
0021
0022 segmCleanerMode = cms.int32(2),
0023 nSharedHitsMax = cms.int32(2),
0024 nUnSharedHitsMin = cms.int32(2),
0025
0026
0027 hit_afterT0_resolution = cms.double(0.03),
0028 performT0_vdriftSegCorrection = cms.bool(False),
0029 performT0SegCorrection = cms.bool(False)
0030 ),
0031 Reco2DAlgoName = cms.string('DTCombinatorialPatternReco')
0032 )
0033