CMS 3D CMS Logo

fakeOmtfParams_extrapolSimple_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 omtfParamsSource = cms.ESSource(
4  "EmptyESSource",
5  recordName = cms.string('L1TMuonOverlapParamsRcd'),
6  iovIsRunNotTime = cms.bool(True),
7  firstValid = cms.vuint32(1)
8 )
9 
10 
11 omtfParams = cms.ESProducer(
12  "L1TMuonOverlapPhase1ParamsESProducer",
13  patternsXMLFiles = cms.VPSet(
14  #patterns used in the CMS from 19 March 2024
15  cms.PSet(patternsXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/Patterns_ExtraplMB1nadMB2SimplifiedFP_t17_classProb17_recalib2_minDP0_v3.xml")),
16  ),
17  #corresponds to the algorithm version used in the CMS from 19 March 2024
18  configXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/hwToLogicLayer_0x0009.xml"),
19 )
20 
21 
22