CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 ###OMTF ESProducer. Fills CondFormats from XML files.
11 omtfParams = cms.ESProducer(
12  "L1TMuonOverlapParamsESProducer",
13  configFromXML = cms.bool(False), #this is necessary as we contruct OMTFConfiguration inside ESProducer. This is a temporary solution.
14  patternsXMLFiles = cms.VPSet(
15  cms.PSet(patternsXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/Patterns_0x00020007.xml")),
16  ),
17  configXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/hwToLogicLayer_0x00020005.xml"),
18 )
19 
20 
21 
22