Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:20

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #used for real DB conditions
0004 from CondCore.DBCommon.CondDBSetup_cfi import *
0005 cscConditions = cms.ESSource("PoolDBESSource",
0006     CondDBSetup,
0007     timetype = cms.string('runnumber'),
0008     toGet = cms.VPSet(cms.PSet(
0009         record = cms.string('CSCGainsRcd'),
0010         tag = cms.string('CSCGains_ideal')
0011     ), 
0012         cms.PSet(
0013             record = cms.string('CSCNoiseMatrixRcd'),
0014             tag = cms.string('CSCNoiseMatrix_ideal')
0015         ), 
0016         cms.PSet(
0017             record = cms.string('CSCcrosstalkRcd'),
0018             tag = cms.string('CSCCrosstalk_ideal')
0019         ), 
0020         cms.PSet(
0021             record = cms.string('CSCPedestalsRcd'),
0022             tag = cms.string('CSCPedestals_ideal')
0023         )),
0024     connect = cms.string('frontier://FrontierDev/CMS_COND_CSC'), ##FrontierDev/CMS_COND_CSC"
0025 
0026     siteLocalConfig = cms.untracked.bool(True)
0027 )
0028 
0029