Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 # Configuration file for testing files with differing product ids   
0002 
0003 import FWCore.ParameterSet.Config as cms
0004 
0005 process = cms.Process("MERGE")
0006 
0007 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0008 
0009 process.Thing = cms.EDProducer("ThingProducer",
0010     offsetDelta = cms.int32(10)
0011 )
0012 
0013 process.OtherThing = cms.EDProducer("OtherThingProducer")
0014 
0015 process.source = cms.Source("PoolSource",
0016     # hack until metadata pruning is implemented
0017     fileNames = cms.untracked.vstring('file:prod1.root', 
0018         'file:prod2.root')
0019 )
0020 
0021 process.out = cms.OutputModule("PoolOutputModule",
0022     fileName = cms.untracked.string('prodmerge.root')
0023 )
0024 
0025 process.p = cms.Path(process.Thing*process.OtherThing)
0026 process.outp = cms.EndPath(process.out)