CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoLocalMuon/DTSegment/python/DTMeantimerPatternReco2DAlgo_ParamDrift_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 Param Drift algos is used.
00008 #
00009 # The reconstruction algo and its parameter set
00010 from RecoLocalMuon.DTRecHit.DTParametrizedDriftAlgo_cfi import *
00011 DTMeantimerPatternReco2DAlgo_ParamDrift = cms.PSet(
00012     Reco2DAlgoConfig = cms.PSet(
00013         # Parameters for the updator
00014         # this is the RecHit1D algo!!
00015         DTParametrizedDriftAlgo,
00016         segmCleanerMode = cms.int32(1),
00017         AlphaMaxPhi = cms.double(1.0),
00018         MaxChi2 = cms.double(8.0),
00019         MaxT0 = cms.double(50.0),
00020         MaxAllowedHits = cms.uint32(50),
00021         # Parameters for the cleaner
00022         nSharedHitsMax = cms.int32(2),
00023         AlphaMaxTheta = cms.double(0.1),
00024         debug = cms.untracked.bool(False),
00025         nUnSharedHitsMin = cms.int32(2),
00026         MinT0 = cms.double(-10.0)
00027     ),
00028     Reco2DAlgoName = cms.string('DTMeantimerPatternReco')
00029 )
00030