File indexing completed on 2024-08-21 04:46:33
0001 import FWCore.ParameterSet.Config as cms
0002
0003 hltAK4PFClusterJets = cms.EDProducer("FastjetJetProducer",
0004 Active_Area_Repeats = cms.int32(1),
0005 GhostArea = cms.double(0.01),
0006 Ghost_EtaMax = cms.double(5.0),
0007 Rho_EtaMax = cms.double(4.4),
0008 applyWeight = cms.bool(False),
0009 doAreaDiskApprox = cms.bool(False),
0010 doAreaFastjet = cms.bool(False),
0011 doPUOffsetCorr = cms.bool(False),
0012 doPVCorrection = cms.bool(False),
0013 doRhoFastjet = cms.bool(False),
0014 inputEMin = cms.double(0.0),
0015 inputEtMin = cms.double(0.3),
0016 jetAlgorithm = cms.string('AntiKt'),
0017 jetPtMin = cms.double(3.0),
0018 jetType = cms.string('PFClusterJet'),
0019 maxBadEcalCells = cms.uint32(9999999),
0020 maxBadHcalCells = cms.uint32(9999999),
0021 maxProblematicEcalCells = cms.uint32(9999999),
0022 maxProblematicHcalCells = cms.uint32(9999999),
0023 maxRecoveredEcalCells = cms.uint32(9999999),
0024 maxRecoveredHcalCells = cms.uint32(9999999),
0025 minSeed = cms.uint32(14327),
0026 nSigmaPU = cms.double(1.0),
0027 rParam = cms.double(0.4),
0028 radiusPU = cms.double(0.5),
0029 src = cms.InputTag("hltPfClusterRefsForJets"),
0030 srcPVs = cms.InputTag("NotUsed"),
0031 useDeterministicSeed = cms.bool(True),
0032 voronoiRfact = cms.double(-0.9)
0033 )