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
00008 jetPtMin = cms.double(3.0),
00009
00010 inputEtMin = cms.double(0.3),
00011
00012 inputEMin = cms.double(0.0),
00013
00014 doPVCorrection = cms.bool(True),
00015
00016 doPUOffsetCorr = cms.bool(False),
00017
00018 nSigmaPU = cms.double(1.0),
00019 radiusPU = cms.double(0.5),
00020
00021 doAreaFastjet = cms.bool(False),
00022 doRhoFastjet = cms.bool(False),
00023
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 )