CMS 3D CMS Logo

hltMe0Segments_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hltMe0Segments = cms.EDProducer("ME0SegmentProducer",
4  algo_psets = cms.VPSet(
5  cms.PSet(
6  algo_name = cms.string('ME0SegmentAlgorithm'),
7  algo_pset = cms.PSet(
8  ME0Debug = cms.untracked.bool(True),
9  dEtaChainBoxMax = cms.double(0.05),
10  dPhiChainBoxMax = cms.double(0.02),
11  dTimeChainBoxMax = cms.double(15.0),
12  dXclusBoxMax = cms.double(1.0),
13  dYclusBoxMax = cms.double(5.0),
14  maxRecHitsInCluster = cms.int32(6),
15  minHitsPerSegment = cms.uint32(3),
16  preClustering = cms.bool(True),
17  preClusteringUseChaining = cms.bool(True)
18  )
19  ),
20  cms.PSet(
21  algo_name = cms.string('ME0SegAlgoRU'),
22  algo_pset = cms.PSet(
23  allowWideSegments = cms.bool(True),
24  doCollisions = cms.bool(True),
25  maxChi2Additional = cms.double(100.0),
26  maxChi2GoodSeg = cms.double(50),
27  maxChi2Prune = cms.double(50),
28  maxETASeeds = cms.double(0.1),
29  maxPhiAdditional = cms.double(0.001096605744),
30  maxPhiSeeds = cms.double(0.001096605744),
31  maxTOFDiff = cms.double(25),
32  minNumberOfHits = cms.uint32(4),
33  requireCentralBX = cms.bool(True)
34  )
35  )
36  ),
37  algo_type = cms.int32(2),
38  me0RecHitLabel = cms.InputTag("hltMe0RecHits")
39 )