CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
cscSQLiteCablingPack17X_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # different es_sources are used for different purposes - packing and unpacking
4 # this one is for packing
5 cscPackingCabling = cms.ESSource("PoolDBESSource",
6  DBParameters = cms.PSet(
7  authenticationPath = cms.untracked.string('/afs/cern.ch/cms/DB/conddb'),
8  authenticationMethod = cms.untracked.uint32(1)
9  ),
10  timetype = cms.string('runnumber'),
11  toGet = cms.VPSet(cms.PSet(
12  record = cms.string('CSCChamberMapRcd'),
13  tag = cms.string('CSCChamberMap')
14  )),
15  connect = cms.string('sqlite_fip:CondCore/SQLiteData/data/CSCChamberMapValues.db')
16 )
17 
18