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 DTMenatimerPatternReco algorithm,
0006 # which is the concrete algo for the DTRecSegment4D production.
0007 # The Parametrized Drift algos is used.
0008 #
0009 # this is the RecSegment2D algo include!
0010 from RecoLocalMuon.DTSegment.DTMeantimerPatternReco2DAlgo_ParamDrift_cfi import *
0011 # this is the RecHit1D algo include!
0012 from RecoLocalMuon.DTRecHit.DTParametrizedDriftAlgo_cfi import *
0013 DTMeantimerPatternReco4DAlgo_ParamDrift = cms.PSet(
0014     Reco4DAlgoName = cms.string('DTMeantimerPatternReco4D'),
0015     Reco4DAlgoConfig = cms.PSet(
0016         # these are the RecSegment2D algo parameters!
0017         DTMeantimerPatternReco2DAlgo_ParamDrift,
0018         # Parameters for the updator
0019         # this is the RecHit1D algo!!
0020         DTParametrizedDriftAlgo,
0021         debug = cms.untracked.bool(False),
0022 
0023         # Parameters for the cleaner
0024         segmCleanerMode = cms.int32(1),
0025         nSharedHitsMax = cms.int32(2),
0026         nUnSharedHitsMin = cms.int32(2),
0027 
0028         # the input type. 
0029         # If true the instructions in setDTRecSegment2DContainer will be schipped and the 
0030         # theta segment will be recomputed from the 1D rechits
0031         # If false the theta segment will be taken from the Event. Caveat: in this case the
0032         # event must contain the 2D segments!
0033         AllDTRecHits = cms.bool(True)
0034     )
0035 )
0036