Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:10:26

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 # Configuration file for PreSecondaryInputTest2
0004 
0005 import FWCore.ParameterSet.Config as cms
0006 
0007 process = cms.Process("TEST")
0008 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0009 
0010 process.maxEvents = cms.untracked.PSet(
0011     input = cms.untracked.int32(50)
0012 )
0013 process.Thing = cms.EDProducer("ThingProducer")
0014 
0015 process.OtherThing = cms.EDProducer("OtherThingProducer")
0016 
0017 process.EventNumber = cms.EDProducer("EventNumberIntProducer")
0018 
0019 process.output = cms.OutputModule("PoolOutputModule",
0020     fileName = cms.untracked.string('SecondaryInputTest2.root')
0021 )
0022 
0023 process.source = cms.Source("EmptySource")
0024 
0025 process.p = cms.Path(process.Thing*process.OtherThing*process.EventNumber)
0026 process.ep = cms.EndPath(process.output)
0027 
0028