File indexing completed on 2023-03-17 11:06:05
0001 import FWCore.ParameterSet.Config as cms
0002
0003 particleFlowRecHitHF = cms.EDProducer("PFRecHitProducer",
0004 navigator = cms.PSet(
0005 hcalEnums = cms.vint32(4),
0006 name = cms.string('PFRecHitHCALDenseIdNavigator')
0007 ),
0008 producers = cms.VPSet(cms.PSet(
0009 EMDepthCorrection = cms.double(22.0),
0010 HADDepthCorrection = cms.double(25.0),
0011 HFCalib29 = cms.double(1.07),
0012 LongFibre_Cut = cms.double(120.0),
0013 LongFibre_Fraction = cms.double(0.1),
0014 ShortFibre_Cut = cms.double(60.0),
0015 ShortFibre_Fraction = cms.double(0.01),
0016 name = cms.string('PFHFRecHitCreator'),
0017 qualityTests = cms.VPSet(
0018 cms.PSet(
0019 cleaningThresholds = cms.vdouble(0.0, 120.0, 60.0),
0020 flags = cms.vstring(
0021 'Standard',
0022 'HFLong',
0023 'HFShort'
0024 ),
0025 maxSeverities = cms.vint32(11, 9, 9),
0026 name = cms.string('PFRecHitQTestHCALChannel')
0027 ),
0028 cms.PSet(
0029 cuts = cms.VPSet(cms.PSet(
0030 depth = cms.vint32(1, 2),
0031 detectorEnum = cms.int32(4),
0032 threshold = cms.vdouble(1.2, 1.8)
0033 )),
0034 name = cms.string('PFRecHitQTestHCALThresholdVsDepth')
0035 )
0036 ),
0037 src = cms.InputTag("hfreco"),
0038 thresh_HF = cms.double(0.4)
0039 ))
0040 )