00001 import FWCore.ParameterSet.Config as cms 00002 00003 # 00004 # This is the include file with the parameters 00005 # for the DTMenatimerPatternReco algorithm, 00006 # which is the concrete algo for the DTRecSegment4D production. 00007 # The Parametrized Drift algos is used. 00008 # 00009 # this is the RecSegment2D algo include! 00010 from RecoLocalMuon.DTSegment.DTMeantimerPatternReco2DAlgo_LinearDrift_cfi import * 00011 # this is the RecHit1D algo include! 00012 from RecoLocalMuon.DTRecHit.DTLinearDriftAlgo_cfi import * 00013 dTMeantimerPatternReco4DAlgo_LinearDrift = cms.PSet( 00014 Reco4DAlgoName = cms.string('DTMeantimerPatternReco4D'), 00015 Reco4DAlgoConfig = cms.PSet( 00016 # Parameters for the updator 00017 # this is the RecHit1D algo!! 00018 dTLinearDriftAlgo, 00019 # this are the RecSegment2D algo parameters! 00020 dTMeantimerPatternReco2DAlgo_LinearDrift, 00021 segmCleanerMode = cms.int32(1), 00022 # Parameters for the cleaner 00023 nSharedHitsMax = cms.int32(2), 00024 debug = cms.untracked.bool(False), 00025 nUnSharedHitsMin = cms.int32(2), 00026 # the input type. 00027 # If true the instructions in setDTRecSegment2DContainer will be schipped and the 00028 # theta segment will be recomputed from the 1D rechits 00029 # If false the theta segment will be taken from the Event. Caveat: in this case the 00030 # event must contain the 2D segments! 00031 AllDTRecHits = cms.bool(True) 00032 ) 00033 ) 00034