CMS 3D CMS Logo

hltParticleFlowRecHitHBHEForEgamma_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hltParticleFlowRecHitHBHEForEgamma = cms.EDProducer("PFRecHitProducer",
4  navigator = cms.PSet(
5  name = cms.string('PFRecHitHCALNavigator'),
6  sigmaCut = cms.double(4.0),
7  timeResolutionCalc = cms.PSet(
8  constantTerm = cms.double(1.92),
9  constantTermLowE = cms.double(6.0),
10  corrTermLowE = cms.double(0.0),
11  noiseTerm = cms.double(8.64),
12  noiseTermLowE = cms.double(0.0),
13  threshHighE = cms.double(8.0),
14  threshLowE = cms.double(2.0)
15  )
16  ),
17  producers = cms.VPSet(cms.PSet(
18  name = cms.string('PFHBHERecHitCreator'),
19  qualityTests = cms.VPSet(
20  cms.PSet(
21  cuts = cms.VPSet(
22  cms.PSet(
23  depth = cms.vint32(1, 2, 3, 4),
24  detectorEnum = cms.int32(1),
25  threshold = cms.vdouble(0.8, 1.2, 1.2, 1.2)
26  ),
27  cms.PSet(
28  depth = cms.vint32(
29  1, 2, 3, 4, 5,
30  6, 7
31  ),
32  detectorEnum = cms.int32(2),
33  threshold = cms.vdouble(
34  0.8, 0.8, 0.8, 0.8, 0.8,
35  0.8, 0.8
36  )
37  )
38  ),
39  name = cms.string('PFRecHitQTestThreshold'),
40  threshold = cms.double(0.8)
41  ),
42  cms.PSet(
43  cleaningThresholds = cms.vdouble(0.0),
44  flags = cms.vstring('Standard'),
45  maxSeverities = cms.vint32(11),
46  name = cms.string('PFRecHitQTestHCALChannel')
47  )
48  ),
49  src = cms.InputTag("hltHbhereco")
50  ))
51 )