Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:55

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hltParticleFlowRecHitHBHE = cms.EDProducer("PFRecHitProducer",
0004     navigator = cms.PSet(
0005         hcalEnums = cms.vint32(1, 2),
0006         name = cms.string('PFRecHitHCALDenseIdNavigator')
0007     ),
0008     producers = cms.VPSet(cms.PSet(
0009         name = cms.string('PFHBHERecHitCreator'),
0010         qualityTests = cms.VPSet(
0011             cms.PSet(
0012                 cuts = cms.VPSet(
0013                     cms.PSet(
0014                         depth = cms.vint32(1, 2, 3, 4),
0015                         detectorEnum = cms.int32(1),
0016                         threshold = cms.vdouble(0.1, 0.2, 0.3, 0.3)
0017                     ),
0018                     cms.PSet(
0019                         depth = cms.vint32(
0020                             1, 2, 3, 4, 5,
0021                             6, 7
0022                         ),
0023                         detectorEnum = cms.int32(2),
0024                         threshold = cms.vdouble(
0025                             0.1, 0.2, 0.2, 0.2, 0.2,
0026                             0.2, 0.2
0027                         )
0028                     )
0029                 ),
0030                 name = cms.string('PFRecHitQTestHCALThresholdVsDepth'),
0031                 usePFThresholdsFromDB = cms.bool(True)
0032             ),
0033             cms.PSet(
0034                 cleaningThresholds = cms.vdouble(0.0),
0035                 flags = cms.vstring('Standard'),
0036                 maxSeverities = cms.vint32(11),
0037                 name = cms.string('PFRecHitQTestHCALChannel')
0038             )
0039         ),
0040         src = cms.InputTag("hltHbhereco")
0041     ))
0042 )