Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:12:43

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("READ")
0004 
0005 process.source = cms.Source("PoolSource", fileNames = cms.untracked.vstring("file:empty.root"))
0006 
0007 process.Thing = cms.EDProducer("ThingProducer")
0008 
0009 process.OtherThing = cms.EDProducer("OtherThingProducer")
0010 
0011 process.p = cms.Path(process.Thing * process.OtherThing)