Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:10

0001 import FWCore.ParameterSet.Config as cms
0002 process = cms.Process("A")
0003 process.source = cms.Source("EmptySource")
0004 process.thing = cms.EDProducer("ThingProducer")
0005 process.other = cms.EDProducer("OtherThingProducer", thingTag=cms.InputTag("thing"))
0006 process.p = cms.Path(process.thing*process.other)
0007 process.out = cms.OutputModule("PoolOutputModule", fileName=cms.untracked.string("a.root"))
0008 process.test = cms.OutputModule("ProvenanceCheckerOutputModule")
0009 process.o = cms.EndPath(process.test+process.out)
0010 process.maxEvents = cms.untracked.PSet(input=cms.untracked.int32(10))