CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HiCaloJetParameters_cff.py
Go to the documentation of this file.
2 
3 ## import and modify standard CaloJetParameters
5 HiCaloJetDefaults = RecoJets.JetProducers.CaloJetParameters_cfi.CaloJetParameters.clone(
6  doPUOffsetCorr = True,
7  doAreaFastjet = True,
8  doRhoFastjet = False,
9  doPVCorrection = False,
10  jetPtMin = 10,
11  Ghost_EtaMax = 6.5
12 
13 )
14 
15 
16 ## add non-uniform fastjet settings
17 HiCaloJetParameters = cms.PSet(
18  HiCaloJetDefaults,
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