1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# The following comments couldn't be translated into the new config version:
#FrontierDev/CMS_COND_CSC"
# { string record = "CSCChamberMapRcd"
# string tag = "CSCChamberMap"},
# { string record = "CSCCrateMapRcd"
# string tag = "CSCCrateMap"},
import FWCore.ParameterSet.Config as cms
from CalibMuon.Configuration.getCSCDBConditions_frontier_cff import *
cscConditions.connect = 'frontier://FrontierDev/CMS_COND_CSC'
cscConditions.toGet = cms.VPSet(cms.PSet(
record = cms.string('CSCDBGainsRcd'),
tag = cms.string('CSCDBGains_mc')
),
cms.PSet(
record = cms.string('CSCDBNoiseMatrixRcd'),
tag = cms.string('CSCDBNoiseMatrix_mc')
),
cms.PSet(
record = cms.string('CSCDBCrosstalkRcd'),
tag = cms.string('CSCDBCrosstalk_mc')
),
cms.PSet(
record = cms.string('CSCDBPedestalsRcd'),
tag = cms.string('CSCDBPedestals_mc')
),
cms.PSet(
record = cms.string('CSCChamberIndexRcd'),
tag = cms.string('CSCChamberIndex')
),
cms.PSet(
record = cms.string('CSCDDUMapRcd'),
tag = cms.string('CSCDDUMap')
))
|