1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
import FWCore.ParameterSet.Config as cms
hltAK4PFPuppiJets = cms.EDProducer("FastjetJetProducer",
Active_Area_Repeats = cms.int32(1),
GhostArea = cms.double(0.01),
Ghost_EtaMax = cms.double(5.0),
Rho_EtaMax = cms.double(4.4),
applyWeight = cms.bool(True),
doAreaDiskApprox = cms.bool(False),
doAreaFastjet = cms.bool(True),
doPUOffsetCorr = cms.bool(False),
doPVCorrection = cms.bool(False),
doRhoFastjet = cms.bool(False),
inputEMin = cms.double(0.0),
inputEtMin = cms.double(0.0),
jetAlgorithm = cms.string('AntiKt'),
jetPtMin = cms.double(5.0),
jetType = cms.string('PFJet'),
maxBadEcalCells = cms.uint32(9999999),
maxBadHcalCells = cms.uint32(9999999),
maxProblematicEcalCells = cms.uint32(9999999),
maxProblematicHcalCells = cms.uint32(9999999),
maxRecoveredEcalCells = cms.uint32(9999999),
maxRecoveredHcalCells = cms.uint32(9999999),
minSeed = cms.uint32(14327),
rParam = cms.double(0.4),
src = cms.InputTag("hltParticleFlowTmp"),
srcPVs = cms.InputTag(""),
srcWeights = cms.InputTag("hltPFPuppi"),
useDeterministicSeed = cms.bool(True),
voronoiRfact = cms.double(-0.9)
)
|