CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoLocalMuon/DTSegment/python/DTMeantimerPatternReco2DAlgo_LinearDriftFromDBLoose_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 DriftFromDB algos is used.
00008 #
00009 # The reconstruction algo and its parameter set
00010 from RecoLocalMuon.DTRecHit.DTLinearDriftFromDBAlgo_cfi import *
00011 DTMeantimerPatternReco2DAlgo_LinearDriftFromDBLoose = cms.PSet(
00012     Reco2DAlgoConfig = cms.PSet(
00013         # Parameters for the updator
00014         # this is the RecHit1D algo!!
00015         DTLinearDriftFromDBAlgo,
00016         AlphaMaxPhi = cms.double(100.0),
00017         AlphaMaxTheta = cms.double(100.),
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(True),
00023         debug = cms.untracked.bool(False),
00024 
00025         # Parameters for the cleaner
00026         segmCleanerMode = cms.int32(1),
00027         nSharedHitsMax = cms.int32(2),
00028         nUnSharedHitsMin = cms.int32(2),
00029 
00030         # Parameters for  T0 fit segment in the Updator 
00031         performT0_vdriftSegCorrection = cms.bool(False),
00032         hit_afterT0_resolution = cms.double(0.03),
00033         performT0SegCorrection = cms.bool(False)
00034 
00035     ),
00036     Reco2DAlgoName = cms.string('DTMeantimerPatternReco')
00037 )
00038