Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:31

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from CondCore.DBCommon.CondDBSetup_cfi import *
0004 # To be used on SQLite files.  AFS access not required.
0005 DTCabling = cms.ESSource("PoolDBESSource",
0006     CondDBSetup,
0007     timetype = cms.string('runnumber'),
0008     toGet = cms.VPSet(cms.PSet(
0009         record = cms.string('DTReadOutMappingRcd'),
0010         tag = cms.string('map_fix17X')
0011     )),
0012     connect = cms.string('sqlite_fip:CondCore/SQLiteData/data/DTFullMap_fix17X.db')
0013 )
0014 
0015