CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTRefitAndCombineReco4DAlgo_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # this is the RecHit1D algo include!
5 DTRefitAndCombineReco4DAlgo = cms.PSet(
6  Reco4DAlgoName = cms.string('DTRefitAndCombineReco4D'),
7  Reco4DAlgoConfig = cms.PSet(
8  # Parameters for the updator
9  # this is the RecHit1D algo!!
10  DTParametrizedDriftAlgo,
11  debug = cms.untracked.bool(False),
12  # Parameters for the cleaner
13  nSharedHitsMax = cms.int32(2),
14  MaxChi2forPhi = cms.double(100.0) ##FIX this value!
15 
16  )
17 )
18