Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13
import FWCore.ParameterSet.Config as cms

process = cms.Process("TEST")

process.source = cms.Source("EmptySource")

process.maxEvents = cms.untracked.PSet(input = cms.untracked.int32(2))

process.thing = cms.EDProducer("ThingProducer")

process.getThing = cms.EDAnalyzer("edmtest::ThingAnalyzer")

process.e = cms.EndPath(process.thing+process.getThing)