CMS 3D CMS Logo

hltParticleFlowRecHitHF_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hltParticleFlowRecHitHF = cms.EDProducer("PFRecHitProducer",
4  navigator = cms.PSet(
5  hcalEnums = cms.vint32(4),
6  name = cms.string('PFRecHitHCALDenseIdNavigator')
7  ),
8  producers = cms.VPSet(cms.PSet(
9  EMDepthCorrection = cms.double(22.0),
10  HADDepthCorrection = cms.double(25.0),
11  HFCalib29 = cms.double(1.07),
12  LongFibre_Cut = cms.double(120.0),
13  LongFibre_Fraction = cms.double(0.1),
14  ShortFibre_Cut = cms.double(60.0),
15  ShortFibre_Fraction = cms.double(0.01),
16  name = cms.string('PFHFRecHitCreator'),
17  qualityTests = cms.VPSet(
18  cms.PSet(
19  cleaningThresholds = cms.vdouble(0.0, 120.0, 60.0),
20  flags = cms.vstring(
21  'Standard',
22  'HFLong',
23  'HFShort'
24  ),
25  maxSeverities = cms.vint32(11, 9, 9),
26  name = cms.string('PFRecHitQTestHCALChannel')
27  ),
28  cms.PSet(
29  cuts = cms.VPSet(cms.PSet(
30  depth = cms.vint32(1, 2),
31  detectorEnum = cms.int32(4),
32  threshold = cms.vdouble(1.2, 1.8)
33  )),
34  name = cms.string('PFRecHitQTestHCALThresholdVsDepth'),
35  usePFThresholdsFromDB = cms.bool(False)
36  )
37  ),
38  src = cms.InputTag("hltHfreco"),
39  thresh_HF = cms.double(0.4)
40  ))
41 )