Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:20:55

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 ## Fills CondFormats from the database
0004 from CondCore.CondDB.CondDB_cfi import CondDB
0005 CondDB.connect = cms.string("frontier://FrontierProd/CMS_CONDITIONS")
0006 
0007 
0008 ## Fills firmware, pT LUT, and PC LUT versions from the database
0009 emtfParamsSource = cms.ESSource(
0010     "PoolDBESSource",
0011     CondDB,
0012     toGet   = cms.VPSet(
0013         cms.PSet(
0014             record = cms.string("L1TMuonEndCapParamsRcd"),
0015             tag    = cms.string("L1TMuonEndCapParams_Stage2v3_hlt")
0016             )
0017         )
0018     )
0019 
0020 
0021 ## Fills pT LUT XMLs ("forests") from the database
0022 emtfForestsDB = cms.ESSource(
0023     "PoolDBESSource",
0024     CondDB,
0025     toGet   = cms.VPSet(
0026         cms.PSet(
0027             ## https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/L1TMuonEndCapForest
0028             record = cms.string("L1TMuonEndCapForestRcd"),
0029             ## v5 EMTF pT LUTs from ~August 2016
0030             tag = cms.string("L1TMuonEndCapForest_static_2016_mc")
0031             )
0032         )
0033     )