File indexing completed on 2023-10-25 09:55:36
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
0011 omtfParams = cms.ESProducer(
0012 "L1TMuonOverlapPhase1ParamsESProducer",
0013 patternsXMLFiles = cms.VPSet(
0014
0015
0016 cms.PSet(patternsXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/Patterns_0x00012_oldSample_3_30Files_grouped1_classProb17_recalib2.xml")),
0017
0018 ),
0019 configXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/hwToLogicLayer_0x0008.xml"),
0020 )
0021
0022
0023