Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:07

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # 
0004 # This is the include file with the parameters
0005 # for the DTLPPatternReco algorithm,
0006 # which is the concrete algo for the DTRecSegment2D production.
0007 # The Parametrized drift algo is used.
0008 #
0009 # The reconstruction algo and its parameter set (it is the RecHit1D algo)
0010 from RecoLocalMuon.DTRecHit.DTParametrizedDriftAlgo_cfi import DTParametrizedDriftAlgo
0011 #the recalgo, needed by the updator
0012 
0013 DTLPPatternReco2DAlgo_ParamDrift = cms.PSet(
0014     Reco2DAlgoConfig = cms.PSet(
0015         # Parameters for the updator
0016         # this is the RecHit1D algo!!
0017         DTParametrizedDriftAlgo,
0018         performT0SegCorrection = cms.bool(False),
0019         hit_afterT0_resolution = cms.double(0.03),
0020         performT0_vdriftSegCorrection = cms.bool(False),
0021         debug = cms.untracked.bool(False),
0022         #these are the parameters for the 2D algo
0023         DeltaFactor = cms.double(4.0),
0024         maxAlphaTheta = cms.double(0.1),
0025         maxAlphaPhi = cms.double(1.0),
0026         min_q = cms.double(-300.0),
0027         max_q = cms.double(300.0),
0028         bigM = cms.double(100.0),
0029         ),
0030     Reco2DAlgoName = cms.string('DTLPPatternReco')
0031 )
0032 
0033 
0034