File indexing completed on 2024-04-06 12:19:09
0001 import FWCore.ParameterSet.Config as cms
0002 import sys
0003
0004 process = cms.Process("TEST")
0005
0006 process.source = cms.Source("PoolSource",
0007 fileNames = cms.untracked.vstring("file:"+sys.argv[1])
0008 )
0009
0010 process.getTriggerNames = cms.EDAnalyzer("edmtest::GetTriggerNamesAnalyzer")
0011
0012 process.out = cms.OutputModule("PoolOutputModule",
0013 fastCloning = cms.untracked.bool(False),
0014 fileName = cms.untracked.string('file:converted.root')
0015 )
0016
0017 process.endpath1 = cms.EndPath(process.getTriggerNames+process.out)