File indexing completed on 2023-03-17 11:17:54
0001 from CondCore.DBCommon.CondDBSetup_cfi import *
0002
0003 GBRWrapperRcd = cms.ESSource("PoolDBESSource",
0004 CondDBSetup,
0005 DumpStat=cms.untracked.bool(True),
0006 toGet = cms.VPSet(
0007 cms.PSet(
0008 record = cms.string('GBRWrapperRcd'),
0009 tag = cms.string('wgbrph_EBCorrection'),
0010 label = cms.untracked.string('wgbrph_EBCorrection')
0011 ),
0012 cms.PSet(
0013 record = cms.string('GBRWrapperRcd'),
0014 tag = cms.string('wgbrph_EBUncertainty'),
0015 label = cms.untracked.string('wgbrph_EBUncertainty')
0016 ),
0017 cms.PSet(
0018 record = cms.string('GBRWrapperRcd'),
0019 tag = cms.string('wgbrph_EECorrection'),
0020 label = cms.untracked.string('wgbrph_EECorrection')
0021 ),
0022 cms.PSet(
0023 record = cms.string('GBRWrapperRcd'),
0024 tag = cms.string('wgbrph_EEUncertainty'),
0025 label = cms.untracked.string('wgbrph_EEUncertainty')
0026 )),
0027 connect = cms.string('sqlite_file:GBRWrapper.db')
0028 )
0029