File indexing completed on 2024-04-06 12:02:53
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("ProcessOne")
0004 process.load("CondCore.CondDB.CondDB_cfi")
0005 process.CondDB.DBParameters.authenticationPath = '/afs/cern.ch/cms/DB/conddb/'
0006
0007
0008
0009
0010 process.CondDB.connect = 'sqlite_file:DBLaser.db'
0011
0012 process.MessageLogger = cms.Service("MessageLogger",
0013 cerr = cms.untracked.PSet(
0014 enable = cms.untracked.bool(False)
0015 ),
0016 cout = cms.untracked.PSet(
0017 enable = cms.untracked.bool(True)
0018 ),
0019 debugModules = cms.untracked.vstring('*')
0020 )
0021
0022 process.source = cms.Source("EmptyIOVSource",
0023 firstValue = cms.uint64(1),
0024 lastValue = cms.uint64(1),
0025 timetype = cms.string('runnumber'),
0026 interval = cms.uint64(1)
0027 )
0028
0029 process.PoolDBESSource = cms.ESSource("PoolDBESSource",
0030 process.CondDB,
0031 timetype = cms.untracked.string('runnumber'),
0032 toGet = cms.VPSet(
0033 cms.PSet(
0034 record = cms.string('EcalLaserAPDPNRatiosRcd'),
0035 tag = cms.string('EcalLaserAPDPNRatios_weekly_v1_hlt')
0036 )
0037 )
0038 )
0039
0040 process.PoolDBOutputService = cms.Service("PoolDBOutputService",
0041 process.CondDB,
0042 logconnect = cms.untracked.string('sqlite_file:DBLog.db'),
0043 timetype = cms.untracked.string('runnumber'),
0044 toPut = cms.VPSet(
0045 cms.PSet(
0046 record = cms.string('EcalLaserAPDPNRatiosRcd'),
0047 tag = cms.string('EcalLaserAPDPNRatios_weekly_v1_hlt')
0048 )
0049 )
0050 )
0051
0052
0053
0054
0055
0056 process.Test1 = cms.EDAnalyzer("ExTestEcalLaser_weekly_Analyzer",
0057 record = cms.string('EcalLaserAPDPNRatiosRcd'),
0058 Source = cms.PSet(
0059 debug = cms.bool(True),
0060 )
0061 )
0062
0063 process.p = cms.Path(process.Test1)
0064
0065