Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-05-19 07:20:22

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("MAKE")
0004 
0005 process.source = cms.Source("EmptySource")
0006 process.maxEvents.input = 10
0007 
0008 process.out = cms.OutputModule("PoolOutputModule", fileName = cms.untracked.string("test.root"))
0009 
0010 process.Thing = cms.EDProducer("ThingProducer")
0011 process.OtherThing = cms.EDProducer("OtherThingProducer")
0012 process.EventNumber = cms.EDProducer("EventNumberIntProducer")
0013 
0014 
0015 process.o = cms.EndPath(process.out, cms.Task(process.Thing, process.OtherThing, process.EventNumber))
0016