File indexing completed on 2024-04-06 12:01:39
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("TEST")
0004 process.load("CondCore.DBCommon.CondDBCommon_cfi")
0005 process.CondDBCommon.connect = 'sqlite_file:keys.db'
0006
0007 process.eff = cms.ESSource("PoolDBESSource",
0008 process.CondDBCommon,
0009 DumpStat=cms.untracked.bool(True),
0010 toGet = cms.VPSet(
0011 cms.PSet(
0012 record = cms.string('ExDwarfListRcd'),
0013 tag = cms.string('ConfTest')
0014 ),
0015 cms.PSet(
0016 record = cms.string('ExDwarfRcd'),
0017 tag = cms.string('KeyTest')
0018 )
0019 )
0020 )
0021
0022 process.source = cms.Source("EmptyIOVSource",
0023 firstValue = cms.uint64(15),
0024 lastValue = cms.uint64(50),
0025 timetype = cms.string('runnumber'),
0026 interval = cms.uint64(7)
0027 )
0028
0029 process.prod = cms.EDAnalyzer("KeyListAnalyzer")
0030
0031 process.p = cms.Path(process.prod)
0032