CMS 3D CMS Logo

cscFrontierCablingPack_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('frontier://FrontierDev/CMS_COND_CSC') ##FrontierDev/CMS_COND_CSC"
16 
17 )
18 
19