File indexing completed on 2024-04-06 12:02:54
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("ProcessOne")
0004 process.load("CondCore.CondDB.CondDB_cfi")
0005
0006
0007
0008
0009
0010 process.CondDB.connect = 'sqlite_file:EcalTPGPhysicsConst.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('EcalTPGPhysicsConstRcd'),
0035 tag = cms.string('EcalTPGPhysicsConst_test')
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('EcalTPGPhysicsConstRcd'),
0047 tag = cms.string('EcalTPGPhysicsConst_test')
0048 )
0049 )
0050 )
0051
0052 process.Test1 = cms.EDAnalyzer("ExTestEcalTPGPhysicsConstfromFile",
0053 record = cms.string('EcalTPGPhysicsConstRcd'),
0054 Source = cms.PSet(
0055 debug = cms.bool(True),
0056 )
0057 )
0058
0059 process.p = cms.Path(process.Test1)