Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:34

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from RecoJets.JetProducers.ak4GenJets_cfi import ak4GenJets
0004 
0005 ak8GenJets = ak4GenJets.clone(
0006     rParam       = 0.8
0007 )
0008 
0009 ak8GenJetsSoftDrop = ak8GenJets.clone(
0010     useSoftDrop = cms.bool(True),
0011     zcut = cms.double(0.1),
0012     beta = cms.double(0.0),
0013     R0   = cms.double(0.8),
0014     useExplicitGhosts = cms.bool(True),
0015     writeCompound = cms.bool(True),
0016     jetCollInstanceName = cms.string("SubJets"),
0017     jetPtMin = 100.0
0018 )
0019 
0020 ak8GenJetsConstituents = cms.EDProducer("GenJetConstituentSelector",
0021                                           src = cms.InputTag("ak8GenJets"),
0022                                           cut = cms.string("pt > 100.0")
0023                                          )