CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ak4PFJetsCS_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
5 from RecoJets.JetProducers.ak4PFJets_cfi import ak4PFJets
6 
7 ak4PFJetsCS = ak4PFJets.clone(
8  useConstituentSubtraction = cms.bool(True),
9  csRParam = cms.double(0.4),
10  csRho_EtaMax = ak4PFJets.Rho_EtaMax, # Just use the same eta for both C.S. and rho by default
11  useExplicitGhosts = cms.bool(True),
12  doAreaFastjet = cms.bool(True),
13  jetPtMin = cms.double(100.0)
14  )
15