CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
particleFlowRecHitHBHE_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from RecoParticleFlow.PFClusterProducer.particleFlowCaloResolution_cfi import _timeResolutionHCAL
3 
4 particleFlowRecHitHBHE = cms.EDProducer("PFRecHitProducer",
5  navigator = cms.PSet(
6  name = cms.string("PFRecHitHCALNavigator"),
7  sigmaCut = cms.double(4.0),
8  timeResolutionCalc = _timeResolutionHCAL
9  ),
10  producers = cms.VPSet(
11  cms.PSet(
12  name = cms.string("PFHBHERecHitCreator"),
13  src = cms.InputTag("hbhereco",""),
14  qualityTests = cms.VPSet(
15  cms.PSet(
16  name = cms.string("PFRecHitQTestThreshold"),
17  threshold = cms.double(0.8)
18  ),
19  cms.PSet(
20  name = cms.string("PFRecHitQTestHCALChannel"),
21  maxSeverities = cms.vint32(11),
22  cleaningThresholds = cms.vdouble(0.0),
23  flags = cms.vstring('Standard')
24  )
25 
26 
27  )
28  ),
29 
30  )
31 
32 )
33