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.DTLinearDriftFromDBAlgo_CosmicData_cfi import *
0011 DTMeantimerPatternReco2DAlgo_LinearDriftFromDB_CosmicData = cms.PSet(
0012 Reco2DAlgoConfig = cms.PSet(
0013
0014
0015 DTLinearDriftFromDBAlgo_CosmicData,
0016 AlphaMaxPhi = cms.double(100.0),
0017 AlphaMaxTheta = cms.double(100.),
0018 MaxChi2 = cms.double(4.0),
0019 MaxAllowedHits = cms.uint32(50),
0020 intime_cut = cms.double(-1.),
0021 debug = cms.untracked.bool(False),
0022
0023
0024 segmCleanerMode = cms.int32(2),
0025 nSharedHitsMax = cms.int32(2),
0026 nUnSharedHitsMin = cms.int32(2),
0027
0028
0029 performT0_vdriftSegCorrection = cms.bool(False),
0030 hit_afterT0_resolution = cms.double(0.03),
0031 performT0SegCorrection = cms.bool(False),
0032 perform_delta_rejecting = cms.bool(False)
0033 ),
0034 Reco2DAlgoName = cms.string('DTMeantimerPatternReco')
0035 )
0036