CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTLPPatternReco2DAlgo_ParamDrift_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # This is the include file with the parameters
5 # for the DTLPPatternReco algorithm,
6 # which is the concrete algo for the DTRecSegment2D production.
7 # The Parametrized drift algo is used.
8 #
9 # The reconstruction algo and its parameter set (it is the RecHit1D algo)
10 from RecoLocalMuon.DTRecHit.DTParametrizedDriftAlgo_cfi import DTParametrizedDriftAlgo
11 #the recalgo, needed by the updator
12 
13 DTLPPatternReco2DAlgo_ParamDrift = cms.PSet(
14  Reco2DAlgoConfig = cms.PSet(
15  # Parameters for the updator
16  # this is the RecHit1D algo!!
17  DTParametrizedDriftAlgo,
18  performT0SegCorrection = cms.bool(False),
19  hit_afterT0_resolution = cms.double(0.03),
20  performT0_vdriftSegCorrection = cms.bool(False),
21  debug = cms.untracked.bool(False),
22  #these are the parameters for the 2D algo
23  DeltaFactor = cms.double(4.0),
24  maxAlphaTheta = cms.double(0.1),
25  maxAlphaPhi = cms.double(1.0),
26  min_q = cms.double(-300.0),
27  max_q = cms.double(300.0),
28  bigM = cms.double(100.0),
29  ),
30  Reco2DAlgoName = cms.string('DTLPPatternReco')
31 )
32 
33 
34