CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/RecoLocalMuon/DTSegment/python/DTMeantimerPatternReco2DAlgo_LinearDriftFromDB_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # 
00004 # This is the include file with the parameters
00005 # for the DTMeantimerPatternReco algorithm,
00006 # which is the concrete algo for the DTRecSegment2D production.
00007 # The linear Drift algo which read from DB is used.
00008 #
00009 # The reconstruction algo and its parameter set
00010 from RecoLocalMuon.DTRecHit.DTLinearDriftFromDBAlgo_cfi import *
00011 DTMeantimerPatternReco2DAlgo_LinearDriftFromDB = cms.PSet(
00012     Reco2DAlgoConfig = cms.PSet(
00013         # Parameters for the updator
00014         # this is the RecHit1D algo!!
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         # Parameters for the cleaner
00024         segmCleanerMode = cms.int32(2),
00025         nSharedHitsMax = cms.int32(2),
00026         nUnSharedHitsMin = cms.int32(2),
00027         # Parameters for  T0 fit segment in the Updator 
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 )