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             ## This payload contains
0016             ## PtAssignVersion=7, firmwareVersion=1497518612, PhiMatchWindowSt1=1
0017             tag    = cms.string("L1TMuonEndCapParams_Stage2v1")
0018             )
0019         )
0020     )
0021 
0022 
0023 ## Fills pT LUT XMLs ("forests") from the database
0024 emtfForestsDB = cms.ESSource(
0025     "PoolDBESSource",
0026     CondDB,
0027     toGet   = cms.VPSet(
0028         cms.PSet(
0029             ## https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/L1TMuonEndCapForest
0030             record = cms.string("L1TMuonEndCapForestRcd"),
0031             ## v7 EMTF pT LUTs from June 8, 2017
0032             tag = cms.string("L1TMuonEndCapForest_static_Sq_20170613_v7_mc")
0033             )
0034         )
0035     )