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.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0006 
0007 process.maxEvents = cms.untracked.PSet(
0008     input = cms.untracked.int32(5)
0009 )
0010 
0011 process.source = cms.Source("EmptySource")
0012 
0013 process.pInt = cms.EDProducer("IntProducer",
0014     ivalue = cms.int32(1)
0015     )
0016 
0017 #Dummy looper will loop twice
0018 process.looper = cms.Looper("TestModuleChangeLooper",
0019     startingValue = cms.untracked.int32(1),
0020     tag = cms.untracked.InputTag("pInt")
0021 )
0022 
0023 process.p1 = cms.Path(process.pInt)