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 DTCombinatorialPatternReco algorithm,
0006 # which is the concrete algo for the DTRecSegment2D production.
0007 # The linear Drift algos is used.
0008 #
0009 # The reconstruction algo and its parameter set
0010 from RecoLocalMuon.DTRecHit.DTNoDriftAlgo_CosmicData_cfi import *
0011 DTCombinatorialPatternReco2DAlgo_NoDrift_CosmicData = cms.PSet(
0012     Reco2DAlgoConfig = cms.PSet(
0013         # Parameters for the updator
0014         # this is the RecHit1D algo!!
0015         DTNoDriftAlgo_CosmicData,
0016         segmCleanerMode = cms.int32(1),
0017         AlphaMaxPhi = cms.double(100.0),
0018         MaxAllowedHits = cms.uint32(50),
0019         # Parameters for the cleaner
0020         nSharedHitsMax = cms.int32(2),
0021         AlphaMaxTheta = cms.double(100.0),
0022         debug = cms.untracked.bool(False),
0023         nUnSharedHitsMin = cms.int32(2),
0024         # Parameters for  T0 fit segment in the Updator and
0025         performT0SegCorrection = cms.bool(False),
0026         performT0_vdriftSegCorrection = cms.bool(False),
0027         hit_afterT0_resolution = cms.double(0.03)
0028     ),
0029     Reco2DAlgoName = cms.string('DTCombinatorialPatternReco')
0030 )
0031