File indexing completed on 2023-03-17 10:46:10
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("TEST")
0004 process.PoolDBESSource = cms.ESSource("PoolDBESSource",
0005 DBParameters = cms.PSet(
0006 messageLevel = cms.untracked.int32(0),
0007 authenticationPath = cms.untracked.string('.')
0008 ),
0009 connect = cms.string('sqlite_file:tagDB.db'),
0010 globaltag = cms.string('Calibration')
0011 )
0012
0013 process.source = cms.Source("EmptyIOVSource",
0014 lastValue = cms.uint64(3),
0015 timetype = cms.string('runnumber'),
0016 firstValue = cms.uint64(1),
0017 interval = cms.uint64(1)
0018 )
0019
0020 process.prod = cms.EDAnalyzer("PedestalsByLabelAnalyzer")
0021
0022 process.p = cms.Path(process.prod)
0023
0024