Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-05-15 04:21:50

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     "L1TMuonOverlapPhase1ParamsESProducer",
0013     patternsXMLFiles = cms.VPSet(
0014         #patterns used in the CMS from 19 March 2024
0015         cms.PSet(patternsXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/Patterns_ExtraplMB1nadMB2SimplifiedFP_t17_classProb17_recalib2_minDP0_v3.xml")),
0016     ),
0017     #corresponds to the algorithm version used in the CMS from 19 March 2024
0018     configXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/hwToLogicLayer_0x0009.xml"),
0019 )
0020 
0021 
0022