CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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  doOutputJets = cms.bool(True),
8  # minimum jet pt
9  jetPtMin = cms.double(3.0),
10  # minimum calo tower input et
11  inputEtMin = cms.double(0.3),
12  # minimum calo tower input energy
13  inputEMin = cms.double(0.0),
14  # primary vertex correction
15  doPVCorrection = cms.bool(True),
16  # pileup with offset correction
17  doPUOffsetCorr = cms.bool(False),
18  # if pileup is false, these are not read:
19  nSigmaPU = cms.double(1.0),
20  radiusPU = cms.double(0.5),
21  # fastjet-style pileup
22  doAreaFastjet = cms.bool( False),
23  doRhoFastjet = cms.bool( False),
24  doAreaDiskApprox = cms.bool( False),
25  Active_Area_Repeats = cms.int32( 1),
26  GhostArea = cms.double(0.01),
27  Ghost_EtaMax = cms.double( 5.0),
28  Rho_EtaMax = cms.double( 4.4),
29  voronoiRfact = cms.double(-0.9),
30  useDeterministicSeed= cms.bool( True ),
31  minSeed = cms.uint32( 14327 )
32 )
33