File indexing completed on 2024-09-26 05:06:39
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.testReadSiStripApproximateClusterCollection = cms.EDAnalyzer("TestReadSiStripApproximateClusterCollection",
0009 expectedIntegralValues = cms.vuint32(11, 21, 31, 41, 51, 62, 73),
0010 collectionTag = cms.InputTag("collectionProducer", "", "PROD")
0011 )
0012
0013 process.out = cms.OutputModule("PoolOutputModule",
0014 fileName = cms.untracked.string('testSiStripApproximateClusterCollection2.root'),
0015 fastCloning = cms.untracked.bool(False)
0016 )
0017
0018 process.path = cms.Path(process.testReadSiStripApproximateClusterCollection)
0019
0020 process.endPath = cms.EndPath(process.out)