Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002 process = cms.Process("test")
00003 process.maxEvents = cms.untracked.PSet(
00004 input = cms.untracked.int32(10)
00005 )
00006
00007 process.source = cms.Source("PoolSource",
00008 fileNames =
00009 cms.untracked.vstring('file:/home/amraktad/cms/cmsShow31/EED15312-972B-DE11-B7E8-000423D987E0.root')
00010 )
00011
00012 process.out = cms.OutputModule("PoolOutputModule",
00013 fileName = cms.untracked.string('/tmp/data.root')
00014 )
00015 process.outpath = cms.EndPath(process.out)