Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:21:04

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 omtfParamsSource = cms.ESSource(
0004     "EmptyESSource",
0005     recordName = cms.string('L1TMuonOverlapParamsRcd'),
0006     iovIsRunNotTime = cms.bool(True),
0007     firstValid = cms.vuint32(1)
0008 )
0009 
0010 ###OMTF ESProducer. Fills CondFormats from XML files.
0011 omtfParams = cms.ESProducer(
0012     "L1TMuonOverlapParamsESProducer",
0013     patternsXMLFiles = cms.VPSet(
0014         cms.PSet(patternsXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/Patterns_0x0003.xml")),
0015     ),
0016     configXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/hwToLogicLayer_0x0005.xml"),
0017 )
0018 
0019 
0020 
0021