File indexing completed on 2024-04-06 12:03:20
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process('test')
0004
0005 process.source = cms.Source('EmptyIOVSource',
0006 timetype = cms.string('runnumber'),
0007 firstValue = cms.uint64(1),
0008 lastValue = cms.uint64(1),
0009 interval = cms.uint64(1)
0010 )
0011
0012
0013 process.load('CondCore.CondDB.CondDB_cfi')
0014 process.CondDB.connect = 'sqlite_file:LHCInfoPerFill.sqlite'
0015
0016 process.PoolDBOutputService = cms.Service('PoolDBOutputService',
0017 process.CondDB,
0018 timetype = cms.untracked.string('runnumber'),
0019 toPut = cms.VPSet(
0020 cms.PSet(
0021 record = cms.string('LHCInfoPerFillRcd'),
0022 tag = cms.string('LHCInfoPerFillFake'),
0023 )
0024 )
0025 )
0026
0027 process.LHCInfoPerFillWriter = cms.EDAnalyzer('LHCInfoPerFillWriter')
0028
0029 process.path = cms.Path(
0030 process.LHCInfoPerFillWriter
0031 )