File indexing completed on 2024-04-06 12:15:58
0001 import FWCore.ParameterSet.Config as cms
0002
0003 ME0SegmentAlgorithm = cms.PSet(
0004 algo_name = cms.string('ME0SegmentAlgorithm'),
0005 algo_pset = cms.PSet(
0006 ME0Debug = cms.untracked.bool(True),
0007 dEtaChainBoxMax = cms.double(0.05),
0008 dPhiChainBoxMax = cms.double(0.02),
0009 dTimeChainBoxMax = cms.double(15.0),
0010 dXclusBoxMax = cms.double(1.0),
0011 dYclusBoxMax = cms.double(5.0),
0012 maxRecHitsInCluster = cms.int32(6),
0013 minHitsPerSegment = cms.uint32(3),
0014 preClustering = cms.bool(True),
0015 preClusteringUseChaining = cms.bool(True)
0016 )
0017 )