Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 # Test storing OtherThing as well
0004 # Configuration file for PrePoolInputTest 
0005 
0006 import FWCore.ParameterSet.Config as cms
0007 
0008 process = cms.Process("TEST2ND")
0009 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0010 
0011 #process.maxEvents = cms.untracked.PSet(
0012 #    input = cms.untracked.int32(11)
0013 #)
0014 #process.Thing = cms.EDProducer("ThingProducer")
0015 
0016 process.output = cms.OutputModule("PoolOutputModule",
0017     outputCommands = cms.untracked.vstring('keep *', 
0018         'drop *_Thing_*_*'),
0019     fileName = cms.untracked.string('PoolInput2FileTest.root')
0020 )
0021 
0022 process.OtherThing = cms.EDProducer("OtherThingProducer")
0023 
0024 process.source = cms.Source("PoolSource",
0025                             fileNames = cms.untracked.vstring("file:PoolInputOther.root") )
0026 
0027 
0028 process.p = cms.Path(process.OtherThing)
0029 process.ep = cms.EndPath(process.output)
0030 
0031