Back to home page

Project CMSSW displayed by LXR

 
 

    


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 ###OMTF ESProducer. Fills CondFormats from XML files.
0011 omtfParams = cms.ESProducer(
0012     "L1TMuonOverlapPhase1ParamsESProducer",
0013     patternsXMLFiles = cms.VPSet(
0014         #cms.PSet(patternsXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/Patterns_0x0003.xml")),
0015         #cms.PSet(patternsXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/Patterns_0x0009_oldSample_3_10Files_classProb1.xml") ),
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