CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/EventFilter/DTRawToDigi/python/DTFrontierCabling_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from CondCore.DBCommon.CondDBSetup_cfi import *
00004 DTCabling = cms.ESSource("PoolDBESSource",
00005     CondDBSetup,
00006     timetype = cms.string('runnumber'),
00007     toGet = cms.VPSet(cms.PSet(
00008         record = cms.string('DTReadOutMappingRcd'),
00009         tag = cms.string('DTROMap')
00010     )),
00011     connect = cms.string('frontier://FrontierDev/CMS_COND_DT'),
00012     siteLocalConfig = cms.untracked.bool(True)
00013 )
00014 
00015