CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/RecoJets/JetProducers/python/CaloJetParameters_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 CaloJetParameters = cms.PSet(
00004     src            = cms.InputTag('towerMaker'),
00005     srcPVs         = cms.InputTag('offlinePrimaryVertices'),
00006     jetType        = cms.string('CaloJet'),
00007     # minimum jet pt
00008     jetPtMin       = cms.double(3.0),
00009     # minimum calo tower input et
00010     inputEtMin     = cms.double(0.3),
00011     # minimum calo tower input energy
00012     inputEMin      = cms.double(0.0),
00013     # primary vertex correction
00014     doPVCorrection = cms.bool(True),
00015     # pileup with offset correction
00016     doPUOffsetCorr = cms.bool(False),
00017        # if pileup is false, these are not read:
00018        nSigmaPU = cms.double(1.0),
00019        radiusPU = cms.double(0.5),  
00020     # fastjet-style pileup 
00021     doAreaFastjet    = cms.bool(False),
00022     doRhoFastjet     = cms.bool(False),
00023        # if doPU is false, these are not read:
00024        Active_Area_Repeats = cms.int32(1),
00025        GhostArea = cms.double(0.01),
00026        Ghost_EtaMax = cms.double(5.0),
00027        Rho_EtaMax = cms.double(4.5)
00028     )