File indexing completed on 2024-04-06 12:20:55
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004 from CondCore.CondDB.CondDB_cfi import CondDB
0005 CondDB.connect = cms.string("frontier://FrontierProd/CMS_CONDITIONS")
0006
0007
0008
0009 emtfParamsSource = cms.ESSource(
0010 "PoolDBESSource",
0011 CondDB,
0012 toGet = cms.VPSet(
0013 cms.PSet(
0014 record = cms.string("L1TMuonEndCapParamsRcd"),
0015
0016
0017 tag = cms.string("L1TMuonEndCapParams_Stage2v1")
0018 )
0019 )
0020 )
0021
0022
0023
0024 emtfForestsDB = cms.ESSource(
0025 "PoolDBESSource",
0026 CondDB,
0027 toGet = cms.VPSet(
0028 cms.PSet(
0029
0030 record = cms.string("L1TMuonEndCapForestRcd"),
0031
0032 tag = cms.string("L1TMuonEndCapForest_static_Sq_20170613_v7_mc")
0033 )
0034 )
0035 )