CMS 3D CMS Logo

ME0SegmentAlgorithm_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 ME0SegmentAlgorithm = cms.PSet(
4  algo_name = cms.string('ME0SegmentAlgorithm'),
5  algo_pset = cms.PSet(
6  ME0Debug = cms.untracked.bool(True),
7  dEtaChainBoxMax = cms.double(0.05),
8  dPhiChainBoxMax = cms.double(0.02),
9  dTimeChainBoxMax = cms.double(15.0),
10  dXclusBoxMax = cms.double(1.0),
11  dYclusBoxMax = cms.double(5.0),
12  maxRecHitsInCluster = cms.int32(6),
13  minHitsPerSegment = cms.uint32(3),
14  preClustering = cms.bool(True),
15  preClusteringUseChaining = cms.bool(True)
16  )
17 )