CMS 3D CMS Logo

PFClusterJetParameters_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 PFClusterJetParameters = cms.PSet(
4  src = cms.InputTag('pfClusterRefsForJets'),
5  srcPVs = cms.InputTag('offlinePrimaryVertices'),
6  jetType = cms.string('PFClusterJet'),
7  # minimum jet pt
8  jetPtMin = cms.double(3.0),
9  # minimum calo tower input et
10  inputEtMin = cms.double(0.3),
11  # minimum calo tower input energy
12  inputEMin = cms.double(0.0),
13  # primary vertex correction
14  doPVCorrection = cms.bool(True),
15  # pileup with offset correction
16  doPUOffsetCorr = cms.bool(False),
17  # if pileup is false, these are not read:
18  nSigmaPU = cms.double(1.0),
19  radiusPU = cms.double(0.5),
20  # fastjet-style pileup
21  doAreaFastjet = cms.bool( False),
22  doRhoFastjet = cms.bool( False),
23  doAreaDiskApprox = cms.bool( False),
24  Active_Area_Repeats = cms.int32( 1),
25  GhostArea = cms.double(0.01),
26  Ghost_EtaMax = cms.double( 5.0),
27  Rho_EtaMax = cms.double( 4.4),
28  voronoiRfact = cms.double(-0.9),
29  useDeterministicSeed= cms.bool( True ),
30  minSeed = cms.uint32( 14327 ),
31  applyWeight = cms.bool( False )
32 )
33