CMS 3D CMS Logo

CMSSW_4_4_3_patch1/src/RecoJets/JetProducers/python/GenJetParameters_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 GenJetParameters = cms.PSet(
00004     src            = cms.InputTag("genParticlesForJets"),
00005     srcPVs         = cms.InputTag(''),
00006     jetType        = cms.string('GenJet'),
00007     jetPtMin       = cms.double(3.0),
00008     inputEtMin     = cms.double(0.0),
00009     inputEMin      = cms.double(0.0),
00010     doPVCorrection = cms.bool(False),
00011     # pileup with offset correction
00012     doPUOffsetCorr = cms.bool(False),
00013        # if pileup is false, these are not read:
00014        nSigmaPU = cms.double(1.0),
00015        radiusPU = cms.double(0.5),  
00016     # fastjet-style pileup     
00017     doAreaFastjet  = cms.bool(False),
00018     doRhoFastjet   = cms.bool(False),
00019       # if doPU is false, these are not read:
00020       Active_Area_Repeats = cms.int32(5),
00021       GhostArea = cms.double(0.01),
00022       Ghost_EtaMax = cms.double(6.0),
00023     Rho_EtaMax = cms.double(4.5),
00024     useDeterministicSeed= cms.bool( True ),
00025     minSeed             = cms.uint32( 14327 )
00026     )
00027