File indexing completed on 2023-03-17 11:03:00
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("THIRD")
0004
0005 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0006
0007 process.source = cms.Source("PoolSource",
0008 fileNames = cms.untracked.vstring('file:testEventHistory_2.root')
0009 )
0010
0011 process.intdeque = cms.EDProducer("IntDequeProducer",
0012 count = cms.int32(12),
0013 ivalue = cms.int32(21)
0014 )
0015
0016 process.intlist = cms.EDProducer("IntListProducer",
0017 count = cms.int32(4),
0018 ivalue = cms.int32(3)
0019 )
0020
0021 process.intset = cms.EDProducer("IntSetProducer",
0022 start = cms.int32(100),
0023 stop = cms.int32(110)
0024 )
0025
0026 process.intvec = cms.EDProducer("IntVectorProducer",
0027 count = cms.int32(9),
0028 ivalue = cms.int32(11)
0029 )
0030
0031 process.out = cms.OutputModule("PoolOutputModule",
0032 fileName = cms.untracked.string('testEventHistory_3.root'),
0033 outputCommands = cms.untracked.vstring('keep *', 'drop *_intvec_*_THIRD')
0034 )
0035
0036 process.outother = cms.OutputModule("PoolOutputModule",
0037 fileName = cms.untracked.string('testEventHistory_other.root')
0038 )
0039
0040 process.p3 = cms.Path(process.intdeque+process.intlist+process.intset)
0041 process.ep31 = cms.EndPath(process.out)
0042 process.ep32 = cms.EndPath(process.intvec*process.intset*process.outother*process.out*process.outother)
0043 process.epother = cms.EndPath(process.outother)