00001 import FWCore.ParameterSet.Config as cms 00002 00003 from CondCore.DBCommon.CondDBSetup_cfi import * 00004 # To be used on SQLite files. AFS access not required. 00005 DTCabling = cms.ESSource("PoolDBESSource", 00006 CondDBSetup, 00007 timetype = cms.string('runnumber'), 00008 toGet = cms.VPSet(cms.PSet( 00009 record = cms.string('DTReadOutMappingRcd'), 00010 tag = cms.string('map_fix17X') 00011 )), 00012 connect = cms.string('sqlite_fip:CondCore/SQLiteData/data/DTFullMap_fix17X.db') 00013 ) 00014 00015