Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:21:07

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/L1TMuonOverlapPhase1/test/expert/omtf/Patterns_template.xml")),
0017         cms.PSet(patternsXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/Patterns_0x00012_oldSample_3_30Files_grouped1_classProb17_recalib2.xml")),
0018         #cms.PSet(patternsXMLFile = cms.FileInPath("L1Trigger/L1TMuonOverlapPhase1/test/expert/omtf/Patterns_layerStat_ExtraplMB1nadMB2_t10_classProb17_recalib2.xml")),
0019     ),
0020     configXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/hwToLogicLayer_0x0008.xml"),
0021 )
0022 
0023 
0024