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 PFClusterJetParameters = cms.PSet( 
0004     src            = cms.InputTag('pfClusterRefsForJets'),
0005     srcPVs         = cms.InputTag('offlinePrimaryVertices'),
0006     jetType        = cms.string('PFClusterJet'),
0007     # minimum jet pt
0008     jetPtMin       = cms.double(3.0),
0009     # minimum calo tower input et
0010     inputEtMin     = cms.double(0.3),
0011     # minimum calo tower input energy
0012     inputEMin      = cms.double(0.0),
0013     # primary vertex correction
0014     doPVCorrection = cms.bool(True),
0015     # pileup with offset correction
0016     doPUOffsetCorr = cms.bool(False),
0017     # if pileup is false, these are not read:
0018     nSigmaPU = cms.double(1.0),
0019     radiusPU = cms.double(0.5),  
0020     # fastjet-style pileup 
0021     doAreaFastjet       = cms.bool( False),
0022     doRhoFastjet        = cms.bool( False),
0023     doAreaDiskApprox    = cms.bool( False),
0024     Active_Area_Repeats = cms.int32(    1),
0025     GhostArea           = cms.double(0.01),
0026     Ghost_EtaMax        = cms.double( 5.0),
0027     Rho_EtaMax          = cms.double( 4.4),
0028     voronoiRfact        = cms.double(-0.9),
0029     useDeterministicSeed= cms.bool( True ),
0030     minSeed             = cms.uint32( 14327 ),
0031     applyWeight         = cms.bool( False )
0032 )
0033