CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
slimmedGenJets_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 slimmedGenJets = cms.EDProducer("PATGenJetSlimmer",
4  src = cms.InputTag("ak4GenJetsNoNu"),
5  packedGenParticles = cms.InputTag("packedGenParticles"),
6  cut = cms.string("pt > 8"),
7  clearDaughters = cms.bool(False), #False means rekeying
8  dropSpecific = cms.bool(False),
9 )
10 
11 
12 slimmedGenJetsAK8 = cms.EDProducer("PATGenJetSlimmer",
13  src = cms.InputTag("ak8GenJetsNoNu"),
14  packedGenParticles = cms.InputTag("packedGenParticles"),
15  cut = cms.string("pt > 150"),
16  clearDaughters = cms.bool(False), #False means rekeying
17  dropSpecific = cms.bool(False),
18 )