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