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