File indexing completed on 2024-04-06 12:31:53
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("FIRST")
0004
0005 process.source = cms.Source("EmptySource")
0006
0007 process.first = cms.OutputModule("PoolOutputModule", fileName = cms.untracked.string("stat_sender_first.root"))
0008 process.b = cms.OutputModule("PoolOutputModule", fileName = cms.untracked.string("stat_sender_b.root"))
0009 process.c = cms.OutputModule("PoolOutputModule", fileName = cms.untracked.string("stat_sender_c.root"))
0010 process.d = cms.OutputModule("PoolOutputModule", fileName = cms.untracked.string("stat_sender_d.root"))
0011 process.e = cms.OutputModule("PoolOutputModule", fileName = cms.untracked.string("stat_sender_e.root"))
0012
0013 process.Thing = cms.EDProducer("ThingProducer")
0014 process.OtherThing = cms.EDProducer("OtherThingProducer")
0015 process.EventNumber = cms.EDProducer("EventNumberIntProducer")
0016
0017
0018 process.o = cms.EndPath(process.first+process.b+process.c+process.d+process.e, cms.Task(process.Thing, process.OtherThing, process.EventNumber))
0019
0020 process.maxEvents.input = 10