CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_1/src/CalibMuon/CSCCalibration/python/CSC_BadChambers_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 cscBadChambers = cms.ESSource("PoolDBESSource",
00004    DBParameters = cms.PSet(
00005        authenticationPath = cms.untracked.string('/afs/cern.ch/cms/DB/conddb'),
00006        authenticationMethod = cms.untracked.uint32(1)
00007    ),
00008    timetype = cms.string('runnumber'),
00009    toGet = cms.VPSet(cms.PSet(
00010        record = cms.string('CSCBadChambersRcd'),
00011        tag = cms.string('CSCBadChambers_empty_mc')
00012    )),
00013    connect = cms.string('sqlite_fip:CondCore/SQLiteData/data/BadChambers_empty_mc.db')
00014 )
00015 
00016