CMS 3D CMS Logo

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