CMS 3D CMS Logo

SelectPartons_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # select the partons for Jet MC Flavour
4 myPartons = cms.EDProducer("PartonSelector",
5  withLeptons = cms.bool(False),
6  src = cms.InputTag("genParticles")
7 )
8 
9