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.DTSegment.DTMeantimerPatternReco2DAlgo_LinearDriftFromDB_cfi import *
0011
0012 from RecoLocalMuon.DTRecHit.DTLinearDriftFromDBAlgo_cfi import *
0013 DTMeantimerPatternReco4DAlgo_LinearDriftFromDB = cms.PSet(
0014 Reco4DAlgoName = cms.string('DTMeantimerPatternReco4D'),
0015 Reco4DAlgoConfig = cms.PSet(
0016
0017
0018 DTLinearDriftFromDBAlgo,
0019
0020 DTMeantimerPatternReco2DAlgo_LinearDriftFromDB,
0021 debug = cms.untracked.bool(False),
0022
0023
0024 nUnSharedHitsMin = cms.int32(2),
0025
0026
0027
0028
0029
0030
0031 AllDTRecHits = cms.bool(True),
0032
0033
0034 performT0SegCorrection = cms.bool(False),
0035 hit_afterT0_resolution = cms.double(0.03),
0036 performT0_vdriftSegCorrection = cms.bool(False),
0037 perform_delta_rejecting = cms.bool(False)
0038 )
0039 )
0040