File indexing completed on 2024-04-06 12:13:08
0001 import FWCore.ParameterSet.Config as cms
0002 process = cms.Process("TEST")
0003
0004 process.source = cms.Source("EmptySource")
0005 process.maxEvents = cms.untracked.PSet(input = cms.untracked.int32(1))
0006
0007 process.tester = cms.EDAnalyzer("SiteLocalConfigServiceCatalogTester",
0008 files = cms.untracked.VPSet(
0009 cms.untracked.PSet(
0010 file = cms.untracked.string("/store/a/b.root"),
0011 catalogIndex = cms.untracked.uint32(0),
0012 expectResult = cms.untracked.string("root://cmsdcadisk.fnal.gov//dcache/uscmsdisk/store/a/b.root")
0013 ),
0014 cms.untracked.PSet(
0015 file = cms.untracked.string("/store/a/b.root"),
0016 catalogIndex = cms.untracked.uint32(1),
0017 expectResult = cms.untracked.string("root://xrootd-cms.infn.it//store/a/b.root")
0018 ),
0019 )
0020 )
0021
0022 process.o = cms.EndPath(process.tester)