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.1, 0.2, 0.3, 0.3)
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  usePFThresholdsFromDB = cms.bool(True)
32  ),
33  cms.PSet(
34  cleaningThresholds = cms.vdouble(0.0),
35  flags = cms.vstring('Standard'),
36  maxSeverities = cms.vint32(11),
37  name = cms.string('PFRecHitQTestHCALChannel')
38  )
39  ),
40  src = cms.InputTag("hltHbhereco")
41  ))
42 )