Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:34

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 GenJetParameters = cms.PSet(
0004     src            = cms.InputTag("genParticlesForJets"),
0005     srcPVs         = cms.InputTag(''),
0006     jetType        = cms.string('GenJet'),
0007     jetPtMin       = cms.double(3.0),
0008     inputEtMin     = cms.double(0.0),
0009     inputEMin      = cms.double(0.0),
0010     doPVCorrection = cms.bool(False),
0011     # pileup with offset correction
0012     doPUOffsetCorr = cms.bool(False),
0013        # if pileup is false, these are not read:
0014        nSigmaPU = cms.double(1.0),
0015        radiusPU = cms.double(0.5),  
0016     # fastjet-style pileup     
0017     doAreaFastjet  = cms.bool(False),
0018     doRhoFastjet   = cms.bool(False),
0019       # if doPU is false, these are not read:
0020       Active_Area_Repeats = cms.int32(5),
0021       GhostArea = cms.double(0.01),
0022       Ghost_EtaMax = cms.double(6.0),
0023     Rho_EtaMax = cms.double(4.5),
0024     useDeterministicSeed= cms.bool( True ),
0025     minSeed             = cms.uint32( 14327 ), 
0026     applyWeight    = cms.bool(False)
0027     )
0028