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 # this is the RecHit1D algo include!
0004 from RecoLocalMuon.DTRecHit.DTParametrizedDriftAlgo_cfi import *
0005 DTRefitAndCombineReco4DAlgo = cms.PSet(
0006     Reco4DAlgoName = cms.string('DTRefitAndCombineReco4D'),
0007     Reco4DAlgoConfig = cms.PSet(
0008         # Parameters for the updator
0009         # this is the RecHit1D algo!!
0010         DTParametrizedDriftAlgo,
0011         debug = cms.untracked.bool(False),
0012         # Parameters for the cleaner
0013         nSharedHitsMax = cms.int32(2),
0014         MaxChi2forPhi = cms.double(100.0) ##FIX this value!
0015 
0016     )
0017 )
0018