File indexing completed on 2024-04-06 12:14:15
0001
0002 import FWCore.ParameterSet.Config as cms
0003
0004 from CondCore.DBCommon.CondDBCommon_cfi import *
0005
0006 PoolDBESSource = cms.ESSource( "PoolDBESSource",
0007 CondDBCommon,
0008 loadAll = cms.bool(True),
0009 toGet = cms.VPSet(
0010 cms.PSet( record = cms.string('GeometryFileRcd' ),
0011 tag = cms.string('XMLFILE_Geometry_Test03')) ),
0012 BlobStreamerName = cms.untracked.string('TBufferBlobStreamingService'),
0013 timetype = cms.untracked.string('runnumber')
0014 )
0015
0016 PoolDBESSource.connect = cms.string('sqlite_file:allxml.db')