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("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     offsetDelta = cms.int32(1)
0017 )
0018 
0019 process.OtherThing = cms.EDProducer("OtherThingProducer")
0020 
0021 process.filterModule = cms.EDFilter("TestFilterModule")
0022 
0023 process.out = cms.OutputModule("PoolOutputModule",
0024     outputCommands = cms.untracked.vstring('drop *', 
0025         'keep edmtestThings_*_*_*', 
0026         'keep *_TriggerResults_*_*'),
0027     fileName = cms.untracked.string('prod1.root')
0028 )
0029 
0030 process.p = cms.Path(process.Thing*process.OtherThing*process.filterModule)
0031 
0032 # These are here for the TriggerNames test, they do not
0033 # do anything other than add a couple more path names
0034 process.p1 = cms.Path(process.Thing*process.OtherThing)
0035 process.p2 = cms.Path(process.Thing*process.OtherThing)
0036 
0037 process.outp = cms.EndPath(process.out)