Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("PROD")
0004 
0005 process.source = cms.Source("EmptySource")
0006 process.maxEvents = cms.untracked.PSet(
0007     input = cms.untracked.int32(1)
0008 )
0009 process.prod = cms.EDProducer("ExistingDictionaryTestProducer")
0010 process.read = cms.EDAnalyzer("ExistingDictionaryTestAnalyzer",
0011                               src = cms.InputTag("prod")
0012 )
0013 
0014 process.out = cms.OutputModule("PoolOutputModule",
0015     fileName = cms.untracked.string('testExistingDictionaryChecking.root'),
0016     outputCommands = cms.untracked.vstring(
0017         'keep *_prod_*_*',
0018     )
0019 )
0020 
0021 process.p = cms.Path(process.prod+process.read)
0022 process.ep = cms.EndPath(process.out)