CMS 3D CMS Logo

ak8GenJets_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from RecoJets.JetProducers.ak4GenJets_cfi import ak4GenJets
4 
5 ak8GenJets = ak4GenJets.clone(
6  rParam = cms.double(0.8)
7  )
8 
9 ak8GenJetsSoftDrop = ak8GenJets.clone(
10  useSoftDrop = cms.bool(True),
11  zcut = cms.double(0.1),
12  beta = cms.double(0.0),
13  R0 = cms.double(0.8),
14  useExplicitGhosts = cms.bool(True),
15  writeCompound = cms.bool(True),
16  jetCollInstanceName=cms.string("SubJets"),
17  jetPtMin = 100.0
18  )
19 
20 ak8GenJetsConstituents = cms.EDProducer("GenJetConstituentSelector",
21  src = cms.InputTag("ak8GenJets"),
22  cut = cms.string("pt > 100.0")
23  )