CMS 3D CMS Logo

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