CMS 3D CMS Logo

ak4PFJets_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
5 
6 ak4PFJets = cms.EDProducer(
7  "FastjetJetProducer",
8  PFJetParameters,
9  AnomalousCellParameters,
10  jetAlgorithm = cms.string("AntiKt"),
11  rParam = cms.double(0.4)
12  )
13 
14 
15 ak4PFJetsCHS = ak4PFJets.clone(
16  src = cms.InputTag("pfNoPileUpJME")
17  )
18 
19 ak4PFJetsPuppi = ak4PFJets.clone(
20  src = cms.InputTag("puppi")
21  )
22 
23 ak4PFJetsSK = ak4PFJets.clone(
24  src = cms.InputTag("softKiller"),
25  useExplicitGhosts = cms.bool(True)
26  )
27 
28 ak4PFJetsCS = ak4PFJets.clone(
29  useConstituentSubtraction = cms.bool(True),
30  csRParam = cms.double(0.4),
31  csRho_EtaMax = ak4PFJets.Rho_EtaMax, # Just use the same eta for both C.S. and rho by default
32  useExplicitGhosts = cms.bool(True),
33  doAreaFastjet = cms.bool(True),
34  jetPtMin = cms.double(100.0)
35  )