Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:59

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from CondCore.DBCommon.CondDBSetup_cfi import *
0004 CondDBSetup.DBParameters.authenticationPath = cms.untracked.string('/afs/cern.ch/cms/DB/conddb')
0005 RPCCabling = cms.ESSource("PoolDBESSource",
0006     CondDBSetup,
0007     toGet = cms.VPSet(cms.PSet(
0008         record = cms.string('RPCEMapRcd'),
0009         tag = cms.string('RPCEMap_v2')
0010     )),
0011     connect = cms.string('frontier://FrontierProd/CMS_COND_36X_RPC')
0012 )
0013 
0014