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  #Run3 thresholds. Will be overwritten with valid aging customisation
17  threshold = cms.vdouble(0.1, 0.2, 0.3, 0.3)
18  ),
19  cms.PSet(
20  depth = cms.vint32(
21  1, 2, 3, 4, 5,
22  6, 7
23  ),
24  detectorEnum = cms.int32(2),
25  threshold = cms.vdouble(
26  0.1, 0.2, 0.2, 0.2, 0.2,
27  0.2, 0.2
28  )
29  )
30  ),
31  name = cms.string('PFRecHitQTestHCALThresholdVsDepth'),
32  usePFThresholdsFromDB = cms.bool(True)
33  ),
34  cms.PSet(
35  cleaningThresholds = cms.vdouble(0.0),
36  flags = cms.vstring('Standard'),
37  maxSeverities = cms.vint32(11),
38  name = cms.string('PFRecHitQTestHCALChannel')
39  )
40  ),
41  src = cms.InputTag("hltHbhereco")
42  ))
43 )