File indexing completed on 2023-03-17 11:11:56
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from L1Trigger.L1TCalorimeter.caloParams_cfi import caloParamsSource
0004 import L1Trigger.L1TCalorimeter.caloParams_cfi
0005 caloStage2Params = L1Trigger.L1TCalorimeter.caloParams_cfi.caloParams.clone()
0006
0007 import CondCore.ESSources.CondDBESSource_cfi
0008 es_pool_hf1x1 = CondCore.ESSources.CondDBESSource_cfi.GlobalTag.clone()
0009
0010 es_pool_hf1x1.timetype = cms.string('runnumber')
0011 es_pool_hf1x1.toGet = cms.VPSet(
0012 cms.PSet(record = cms.string("HcalLutMetadataRcd"),
0013 tag = cms.string("HcalLutMetadata_HFTP_1x1")
0014 ),
0015 cms.PSet(record = cms.string("HcalElectronicsMapRcd"),
0016 tag = cms.string("HcalElectronicsMap_HFTP_1x1")
0017 )
0018 )
0019 es_pool_hf1x1.connect = cms.string('frontier://FrontierProd/CMS_CONDITIONS')
0020 es_pool_hf1x1.authenticationMethod = cms.untracked.uint32(0)
0021
0022 es_prefer_es_pool_hf1x1 = cms.ESPrefer("PoolDBESSource", "es_pool_hf1x1")
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040