CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ak4PFJetsCHSCS_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 ak4PFJetsCHSCS = ak4PFJets.clone(
8  src = cms.InputTag("pfNoPileUpJME"),
9  useConstituentSubtraction = cms.bool(True),
10  csRParam = cms.double(0.4),
11  csRho_EtaMax = ak4PFJets.Rho_EtaMax, # Just use the same eta for both C.S. and rho by default
12  useExplicitGhosts = cms.bool(True),
13  doAreaFastjet = cms.bool(True),
14  jetPtMin = cms.double(100.0)
15  )
16