CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/EventFilter/CSCRawToDigi/python/cscSQLiteCablingPack18X_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # different es_sources are used for different purposes - packing and unpacking
00004 # this one is for packing
00005 cscPackingCabling = cms.ESSource("PoolDBESSource",
00006     DBParameters = cms.PSet(
00007         authenticationPath = cms.untracked.string('/afs/cern.ch/cms/DB/conddb'),
00008         authenticationMethod = cms.untracked.uint32(1)
00009     ),
00010     timetype = cms.string('runnumber'),
00011     toGet = cms.VPSet(cms.PSet(
00012         record = cms.string('CSCChamberMapRcd'),
00013         tag = cms.string('CSCChamberMap')
00014     )),
00015     connect = cms.string('sqlite_fip:CondCore/SQLiteData/data/CSCChamberMapValues_18X.db')
00016 )
00017 
00018