1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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.thingTask = cms.Task(process.thing)
process.e = cms.EndPath(process.getThing,process.thingTask)
|