CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/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 
00017 
00018 ## add non-uniform fastjet settings
00019 HiPFJetParameters = cms.PSet(
00020     HiPFJetDefaults,
00021     doFastJetNonUniform = cms.bool(True),
00022     puCenters = cms.vdouble(-5,-4,-3,-2,-1,0,1,2,3,4,5),
00023     puWidth = cms.double(0.8)
00024    
00025 )
00026 
00027 ## default settings for various pileup subtractors
00028 MultipleAlgoIteratorBlock = cms.PSet(
00029     subtractorName = cms.string("MultipleAlgoIterator"),
00030     sumRecHits = cms.bool(False)
00031 )
00032 
00033 ParametrizedSubtractorBlock = cms.PSet(
00034     subtractorName = cms.string("ParametrizedSubtractorBlock"),
00035     sumRecHits = cms.bool(False),
00036     interpolate = cms.bool(False)
00037 )
00038