CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CSC_BadChambers_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 cscBadChambers = cms.ESSource("PoolDBESSource",
4  DBParameters = cms.PSet(
5  authenticationPath = cms.untracked.string('/afs/cern.ch/cms/DB/conddb'),
6  authenticationMethod = cms.untracked.uint32(1)
7  ),
8  timetype = cms.string('runnumber'),
9  toGet = cms.VPSet(cms.PSet(
10  record = cms.string('CSCBadChambersRcd'),
11  tag = cms.string('CSCBadChambers_empty_mc')
12  )),
13  connect = cms.string('sqlite_fip:CondCore/SQLiteData/data/BadChambers_empty_mc.db')
14 )
15 
16