CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/RecoHI/HiJetAlgos/python/HiPFJetParameters_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 ## import and modify standard PFJetParameters
00004 import RecoJets.JetProducers.PFJetParameters_cfi
00005 HiPFJetDefaults = RecoJets.JetProducers.PFJetParameters_cfi.PFJetParameters.clone(
00006     doPUOffsetCorr = False,
00007     doAreaFastjet = True,
00008     doRhoFastjet = True,
00009     doPVCorrection = False,
00010     jetPtMin = 10,
00011     Ghost_EtaMax = 6.5,
00012     # this parameter is missing from PFJetParameters for some reason
00013     Rho_EtaMax = cms.double(4.5)
00014 )
00015 
00016 ## add non-uniform fastjet settings
00017 HiPFJetParameters = cms.PSet(
00018     HiPFJetDefaults,
00019     doFastJetNonUniform = cms.bool(True),
00020     puCenters = cms.vdouble(-5,-4,-3,-2,-1,0,1,2,3,4,5),
00021     puWidth = cms.double(0.8),
00022     nExclude = cms.uint32(2)
00023 )
00024 
00025 ## default settings for various pileup subtractors
00026 MultipleAlgoIteratorBlock = cms.PSet(
00027     subtractorName = cms.string("MultipleAlgoIterator"),
00028     sumRecHits = cms.bool(False)
00029 )
00030 
00031 ParametrizedSubtractorBlock = cms.PSet(
00032     subtractorName = cms.string("ParametrizedSubtractorBlock"),
00033     sumRecHits = cms.bool(False),
00034     interpolate = cms.bool(False)
00035 )
00036