File indexing completed on 2025-04-17 02:42:00
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("TEST")
0004
0005 process.PoolDBESSource = cms.ESSource("PoolDBESSource",
0006 toGet = cms.VPSet(
0007
0008
0009 ),
0010 connect = cms.string('sqlite_file:test.db'),
0011 DBParameters = cms.PSet(
0012 messageLevel = cms.untracked.int32(0),
0013 authenticationPath = cms.untracked.string('.')
0014 )
0015 )
0016
0017 process.source = cms.Source("EmptyIOVSource",
0018 timetype = cms.string('runnumber'),
0019 firstValue = cms.uint64(1),
0020 lastValue = cms.uint64(5),
0021 interval = cms.uint64(1)
0022 )
0023
0024
0025
0026 process.p = cms.Path(
0027
0028
0029 )