CMS 3D CMS Logo

HiPFJetParameters_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 ## import and modify standard PFJetParameters
5 HiPFJetDefaults = RecoJets.JetProducers.PFJetParameters_cfi.PFJetParameters.clone(
6  doPUOffsetCorr = False,
7  doAreaFastjet = True,
8  doRhoFastjet = True,
9  doPVCorrection = False,
10  jetPtMin = 10,
11  Ghost_EtaMax = 6.5,
12  # this parameter is missing from PFJetParameters for some reason
13  Rho_EtaMax = cms.double(4.5)
14 )
15 
16 ## add non-uniform fastjet settings
17 HiPFJetParameters = cms.PSet(
18  HiPFJetDefaults,
19  doFastJetNonUniform = cms.bool(True),
20  puCenters = cms.vdouble(-5,-4,-3,-2,-1,0,1,2,3,4,5),
21  puWidth = cms.double(0.8),
22  nExclude = cms.uint32(2),
23 )
24 
25 ## default settings for various pileup subtractors
26 MultipleAlgoIteratorBlock = cms.PSet(
27  subtractorName = cms.string("MultipleAlgoIterator"),
28  sumRecHits = cms.bool(False)
29 )
30 
31 ParametrizedSubtractorBlock = cms.PSet(
32  subtractorName = cms.string("ParametrizedSubtractorBlock"),
33  sumRecHits = cms.bool(False),
34  interpolate = cms.bool(False)
35 )
36