Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:11

0001 # Configuration file for RefTest_t
0002 
0003 import FWCore.ParameterSet.Config as cms
0004 
0005 process = cms.Process("TEST")
0006 
0007 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0008 
0009 process.maxEvents = cms.untracked.PSet(
0010     input = cms.untracked.int32(2)
0011 )
0012 
0013 process.source = cms.Source("EmptySource")
0014 
0015 process.Thing = cms.EDProducer("ThingProducer")
0016 
0017 process.OtherThing = cms.EDProducer("OtherThingProducer")
0018 
0019 process.out = cms.OutputModule("PoolOutputModule",
0020     fileName = cms.untracked.string('testTFWLiteSelector.root')
0021 )
0022 
0023 process.p = cms.Path(process.Thing*process.OtherThing)
0024 process.o = cms.EndPath(process.out)