File indexing completed on 2024-04-06 12:04:11
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("COPYDROP")
0004
0005 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0006
0007 process.source = cms.Source("PoolSource",
0008 fileNames = cms.untracked.vstring('file:goodDataFormatsFWLite.root')
0009 )
0010
0011 process.out = cms.OutputModule("PoolOutputModule",
0012 fileName = cms.untracked.string('refTestCopyDropDataFormatsFWLite.root'),
0013 outputCommands = cms.untracked.vstring(
0014 'keep *',
0015 'drop *_thinningThingProducerE_*_*',
0016 'drop *_thinningThingProducerF_*_*'
0017 )
0018 )
0019
0020 process.outp = cms.EndPath(process.out)