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.DTLinearDriftFromDBAlgo_cfi import *
00011 DTMeantimerPatternReco2DAlgo_LinearDriftFromDB = cms.PSet(
00012 Reco2DAlgoConfig = cms.PSet(
00013
00014
00015 DTLinearDriftFromDBAlgo,
00016 AlphaMaxPhi = cms.double(1.0),
00017 AlphaMaxTheta = cms.double(0.9),
00018 MaxChi2 = cms.double(4.0),
00019 MaxT0 = cms.double(100.0),
00020 MinT0 = cms.double(-100.0),
00021 MaxAllowedHits = cms.uint32(50),
00022 debug = cms.untracked.bool(False),
00023
00024 segmCleanerMode = cms.int32(2),
00025 nSharedHitsMax = cms.int32(2),
00026 nUnSharedHitsMin = cms.int32(2),
00027
00028 performT0_vdriftSegCorrection = cms.bool(False),
00029 hit_afterT0_resolution = cms.double(0.03),
00030 performT0SegCorrection = cms.bool(False),
00031 perform_delta_rejecting = cms.bool(True)
00032 ),
00033 Reco2DAlgoName = cms.string('DTMeantimerPatternReco')
00034 )