Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 PoolDBESSource = cms.ESSource("PoolDBESSource",
00004 catalog = cms.untracked.string('xmlcatalog_file:prova_dbcatalog.xml'),
00005 timetype = cms.string('runnumber'),
00006 toGet = cms.VPSet(cms.PSet(
00007 record = cms.string('SiPixelGainCalibrationRcd'),
00008 tag = cms.string('mytest_p')
00009 )),
00010 connect = cms.string('sqlite_file:prova.db'),
00011 DBParameters = cms.PSet(
00012 messageLevel = cms.untracked.int32(1),
00013 authenticationPath = cms.untracked.string('./'),
00014 loadBlobStreamer = cms.untracked.bool(True)
00015 )
00016 )
00017
00018