CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
me0Segments_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 me0Segments = cms.EDProducer("ME0SegmentProducer",
4  me0RecHitLabel = cms.InputTag("me0RecHits"),
5  algo_name = cms.string("ME0SegAlgoMM"),
6  algo_pset = cms.PSet(
7  ME0Debug = cms.untracked.bool(True),
8  minHitsPerSegment = cms.uint32(3),
9  preClustering = cms.bool(True),
10  dXclusBoxMax = cms.double(1.),
11  dYclusBoxMax = cms.double(5.),
12  preClusteringUseChaining = cms.bool(True),
13  dPhiChainBoxMax = cms.double(.02),
14  dEtaChainBoxMax = cms.double(.05),
15  maxRecHitsInCluster = cms.int32(6)
16  )
17 )