CMS 3D CMS Logo

ME0SegmentsAlgorithm_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  minHitsPerSegment = cms.uint32(3),
8  preClustering = cms.bool(True),
9  dXclusBoxMax = cms.double(1.),
10  dYclusBoxMax = cms.double(5.),
11  preClusteringUseChaining = cms.bool(True),
12  dPhiChainBoxMax = cms.double(.02),
13  dEtaChainBoxMax = cms.double(.05),
14  dTimeChainBoxMax = cms.double(15.0), # 1ns, +/- time to fly through 30cm thick ME0
15  maxRecHitsInCluster = cms.int32(6)
16  )
17 )