Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:10

0001 import FWCore.ParameterSet.Config as cms
0002 process = cms.Process("B")
0003 process.source = cms.Source("PoolSource", fileNames=cms.untracked.vstring("file:a.root"))
0004 process.other = cms.EDProducer("OtherThingProducer", thingTag=cms.InputTag("thing"))
0005 process.p = cms.Path(process.other)
0006 process.out = cms.OutputModule("PoolOutputModule",
0007                                fileName=cms.untracked.string("b.root"),
0008                                outputCommands=cms.untracked.vstring("drop *","keep *_*_*_B"))
0009 process.test = cms.OutputModule("ProvenanceCheckerOutputModule")
0010 process.o = cms.EndPath(process.test+process.out)