CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PFJetParameters_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 PFJetParameters = cms.PSet(
4  src = cms.InputTag('particleFlow'),
5  srcPVs = cms.InputTag(''),
6  jetType = cms.string('PFJet'),
7  doOutputJets = cms.bool(True),
8  jetPtMin = cms.double(5.0),
9  inputEMin = cms.double(0.0),
10  inputEtMin = cms.double(0.0),
11  doPVCorrection = cms.bool(False),
12  # pileup with offset correction
13  doPUOffsetCorr = cms.bool(False),
14  # if pileup is false, these are not read:
15  nSigmaPU = cms.double(1.0),
16  radiusPU = cms.double(0.5),
17  # fastjet-style pileup
18  doAreaFastjet = cms.bool( False),
19  doRhoFastjet = cms.bool( False),
20  doAreaDiskApprox = cms.bool( False),
21  Active_Area_Repeats = cms.int32( 1),
22  GhostArea = cms.double(0.01),
23  Ghost_EtaMax = cms.double( 5.0),
24  Rho_EtaMax = cms.double( 4.4),
25  voronoiRfact = cms.double(-0.9),
26  useDeterministicSeed= cms.bool( True ),
27  minSeed = cms.uint32( 14327 )
28 )