CMS 3D CMS Logo

hltParticleFlowRecHitHBHE_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hltParticleFlowRecHitHBHE = cms.EDProducer("PFRecHitProducer",
4  navigator = cms.PSet(
5  hcalEnums = cms.vint32(1, 2),
6  name = cms.string('PFRecHitHCALDenseIdNavigator')
7  ),
8  producers = cms.VPSet(cms.PSet(
9  name = cms.string('PFHBHERecHitCreator'),
10  qualityTests = cms.VPSet(
11  cms.PSet(
12  cuts = cms.VPSet(
13  cms.PSet(
14  depth = cms.vint32(1, 2, 3, 4),
15  detectorEnum = cms.int32(1),
16  threshold = cms.vdouble(0.8, 1.2, 1.2, 1.2)
17  ),
18  cms.PSet(
19  depth = cms.vint32(
20  1, 2, 3, 4, 5,
21  6, 7
22  ),
23  detectorEnum = cms.int32(2),
24  threshold = cms.vdouble(
25  0.1, 0.2, 0.2, 0.2, 0.2,
26  0.2, 0.2
27  )
28  )
29  ),
30  name = cms.string('PFRecHitQTestHCALThresholdVsDepth')
31  ),
32  cms.PSet(
33  cleaningThresholds = cms.vdouble(0.0),
34  flags = cms.vstring('Standard'),
35  maxSeverities = cms.vint32(11),
36  name = cms.string('PFRecHitQTestHCALChannel')
37  )
38  ),
39  src = cms.InputTag("hltHbhereco")
40  ))
41 )