File indexing completed on 2024-09-26 05:06:36
0001 import FWCore.ParameterSet.Config as cms
0002 import sys
0003
0004 process = cms.Process("READ")
0005
0006 process.source = cms.Source("PoolSource", fileNames = cms.untracked.vstring("file:"+sys.argv[1]))
0007
0008 process.testReadVectorDetId = cms.EDAnalyzer("TestReadVectorDetId",
0009 expectedTestValue = cms.uint32(21),
0010 collectionTag = cms.InputTag("collectionProducer", "", "PROD")
0011 )
0012
0013 process.out = cms.OutputModule("PoolOutputModule",
0014 fileName = cms.untracked.string('testVectorDetId2.root'),
0015 fastCloning = cms.untracked.bool(False)
0016 )
0017
0018 process.path = cms.Path(process.testReadVectorDetId)
0019
0020 process.endPath = cms.EndPath(process.out)