File indexing completed on 2023-03-17 11:03:03
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("TEST")
0004
0005 process.source = cms.Source("EmptySource")
0006
0007 process.maxEvents = cms.untracked.PSet(input = cms.untracked.int32(2))
0008
0009 process.thing = cms.EDProducer("ThingProducer")
0010
0011 process.getThing = cms.EDAnalyzer("edmtest::ThingAnalyzer")
0012
0013 process.thingTask = cms.Task(process.thing)
0014 process.e = cms.EndPath(process.getThing,process.thingTask)