Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-04-17 02:42:23

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #used for chamber DB conditions
0004 from CondCore.DBCommon.CondDBSetup_cfi import *
0005 cscConditions = cms.ESSource("PoolDBESSource",
0006     CondDBSetup,
0007     #    string connect = "frontier://FrontierDev/CMS_COND_ALIGNMENT"
0008     toGet = cms.VPSet(cms.PSet(
0009         record = cms.string('CSCChamberMapRcd'),
0010         tag = cms.string('CSCChamberMap')
0011     ), 
0012         cms.PSet(
0013             record = cms.string('CSCChamberIndexRcd'),
0014             tag = cms.string('CSCChamberIndex')
0015         ), 
0016         cms.PSet(
0017             record = cms.string('CSCCrateMapRcd'),
0018             tag = cms.string('CSCCrateMap')
0019         ), 
0020         cms.PSet(
0021             record = cms.string('CSCDDUMapRcd'),
0022             tag = cms.string('CSCDDUMap')
0023         )),
0024     connect = cms.string('oracle://cms_orcoff_int2r/CMS_COND_CSC'), ##cms_orcoff_int2r/CMS_COND_CSC"
0025 
0026 )
0027 
0028 cscConditions.DBParameters.authenticationPath = '/afs/cern.ch/cms/DB/conddb'
0029