Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("TEST")
0004 
0005 process.source = cms.Source("EmptySource")
0006 process.maxEvents = cms.untracked.PSet(
0007     input = cms.untracked.int32(3)
0008 )
0009 
0010 # note that these modules get deleted, but the module dependence check is made first
0011 process.intProducer1 = cms.EDProducer("IntProducer", ivalue = cms.int32(1))
0012 process.intProducer2 = cms.EDProducer("AddIntsProducer", labels = cms.VInputTag("intProducer1"))
0013 
0014 process.p = cms.Path(cms.Task(process.intProducer1, process.intProducer2))