CMS 3D CMS Logo

fakeOmtfParams_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  "L1TMuonOverlapParamsESProducer",
13  patternsXMLFiles = cms.VPSet(
14  cms.PSet(patternsXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/Patterns_0x0003.xml")),
15  ),
16  configXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/hwToLogicLayer_0x0005.xml"),
17 )
18 
19 
20 
21