CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoLocalMuon/DTSegment/python/DTLPPatternReco2DAlgo_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 DTLPPatternReco algorithm,
00006 # which is the concrete algo for the DTRecSegment2D production.
00007 # The Parametrized drift algo is used.
00008 #
00009 # The reconstruction algo and its parameter set (it is the RecHit1D algo)
00010 from RecoLocalMuon.DTRecHit.DTParametrizedDriftAlgo_cfi import DTParametrizedDriftAlgo
00011 #the recalgo, needed by the updator
00012 
00013 DTLPPatternReco2DAlgo_ParamDrift = cms.PSet(
00014     Reco2DAlgoConfig = cms.PSet(
00015         # Parameters for the updator
00016         # this is the RecHit1D algo!!
00017         DTParametrizedDriftAlgo,
00018         performT0SegCorrection = cms.bool(False),
00019         hit_afterT0_resolution = cms.double(0.03),
00020         performT0_vdriftSegCorrection = cms.bool(False),
00021         debug = cms.untracked.bool(False),
00022         #these are the parameters for the 2D algo
00023         DeltaFactor = cms.double(4.0),
00024         maxAlphaTheta = cms.double(0.1),
00025         maxAlphaPhi = cms.double(1.0),
00026         min_q = cms.double(-300.0),
00027         max_q = cms.double(300.0),
00028         bigM = cms.double(100.0),
00029         ),
00030     Reco2DAlgoName = cms.string('DTLPPatternReco')
00031 )
00032 
00033 
00034