Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:15:56

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # select the partons for Jet MC Flavour
0004 myPartons = cms.EDProducer("PartonSelector",
0005     withLeptons = cms.bool(False),
0006     src = cms.InputTag("genParticles")
0007 )
0008 
0009