File indexing completed on 2022-04-20 23:56:54
0001 import FWCore.ParameterSet.Config as cms
0002
0003 hltParticleFlowRecHitHBHEForMuons = cms.EDProducer("PFRecHitProducer",
0004 navigator = cms.PSet(
0005 name = cms.string('PFRecHitHCALNavigator'),
0006 sigmaCut = cms.double(4.0),
0007 timeResolutionCalc = cms.PSet(
0008 constantTerm = cms.double(1.92),
0009 constantTermLowE = cms.double(6.0),
0010 corrTermLowE = cms.double(0.0),
0011 noiseTerm = cms.double(8.64),
0012 noiseTermLowE = cms.double(0.0),
0013 threshHighE = cms.double(8.0),
0014 threshLowE = cms.double(2.0)
0015 )
0016 ),
0017 producers = cms.VPSet(cms.PSet(
0018 name = cms.string('PFHBHERecHitCreator'),
0019 qualityTests = cms.VPSet(
0020 cms.PSet(
0021 cuts = cms.VPSet(
0022 cms.PSet(
0023 depth = cms.vint32(1, 2, 3, 4),
0024 detectorEnum = cms.int32(1),
0025 threshold = cms.vdouble(0.8, 0.8, 0.8, 0.8)
0026 ),
0027 cms.PSet(
0028 depth = cms.vint32(
0029 1, 2, 3, 4, 5,
0030 6, 7
0031 ),
0032 detectorEnum = cms.int32(2),
0033 threshold = cms.vdouble(
0034 0.8, 0.8, 0.8, 0.8, 0.8,
0035 0.8, 0.8
0036 )
0037 )
0038 ),
0039 name = cms.string('PFRecHitQTestThreshold'),
0040 threshold = cms.double(0.8)
0041 ),
0042 cms.PSet(
0043 cleaningThresholds = cms.vdouble(0.0),
0044 flags = cms.vstring('Standard'),
0045 maxSeverities = cms.vint32(11),
0046 name = cms.string('PFRecHitQTestHCALChannel')
0047 )
0048 ),
0049 src = cms.InputTag("hltHbhereco")
0050 ))
0051 )