1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# The following comments couldn't be translated into the new config version:
#FrontierDev/CMS_COND_CSC"
import FWCore.ParameterSet.Config as cms
from CalibMuon.Configuration.getCSCDBConditionsME42_frontier_cff import *
cscConditions.connect = 'frontier://FrontierDev/CMS_COND_CSC'
cscConditions.toGet = cms.VPSet(cms.PSet(
record = cms.string('CSCDBGainsRcd'),
tag = cms.string('CSCDBGains_test')
),
cms.PSet(
record = cms.string('CSCDBNoiseMatrixRcd'),
tag = cms.string('CSCDBNoiseMatrix_test')
),
cms.PSet(
record = cms.string('CSCDBCrosstalkRcd'),
tag = cms.string('CSCDBCrosstalk_test')
),
cms.PSet(
record = cms.string('CSCDBPedestalsRcd'),
tag = cms.string('CSCDBPedestals_test')
))
|