CMS 3D CMS Logo

hltGemSegments_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hltGemSegments = cms.EDProducer("GEMSegmentProducer",
4  algo_name = cms.string('GEMSegmentAlgorithm'),
5  algo_pset = cms.PSet(
6  GEMDebug = cms.untracked.bool(True),
7  clusterOnlySameBXRecHits = cms.bool(True),
8  dEtaChainBoxMax = cms.double(0.05),
9  dPhiChainBoxMax = cms.double(0.02),
10  dXclusBoxMax = cms.double(1.0),
11  dYclusBoxMax = cms.double(5.0),
12  maxRecHitsInCluster = cms.int32(4),
13  minHitsPerSegment = cms.uint32(2),
14  preClustering = cms.bool(True),
15  preClusteringUseChaining = cms.bool(True)
16  ),
17  gemRecHitLabel = cms.InputTag("hltGemRecHits")
18 )