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 ###OMTF emulator configuration
0004 simOmtfDigis = cms.EDProducer("L1TMuonOverlapPhase1TrackProducer",
0005                               
0006   srcDTPh = cms.InputTag('simDtTriggerPrimitiveDigis'),
0007   srcDTTh = cms.InputTag('simDtTriggerPrimitiveDigis'),
0008   srcCSC = cms.InputTag('simCscTriggerPrimitiveDigis','MPCSORTED'),
0009   srcRPC = cms.InputTag('simMuonRPCDigis'), 
0010   
0011   #g4SimTrackSrc = cms.InputTag('g4SimHits'),                             
0012   dumpResultToXML = cms.bool(False),
0013   dumpDetailedResultToXML = cms.bool(False),
0014   XMLDumpFileName = cms.string("TestEvents.xml"),                                     
0015   dumpGPToXML = cms.bool(False),  
0016   readEventsFromXML = cms.bool(False),
0017   eventsXMLFiles = cms.vstring("TestEvents.xml"),
0018   dropRPCPrimitives = cms.bool(False),                                    
0019   dropDTPrimitives = cms.bool(False),                                    
0020   dropCSCPrimitives = cms.bool(False),
0021   processorType = cms.string("OMTFProcessor"),
0022   
0023   #ghostBusterType = cms.string("GhostBusterPreferRefDt"),
0024   
0025   #patternsXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/Patterns_0x00020007.xml")
0026   #patternsXMLFile = cms.FileInPath("L1Trigger/L1TMuon/data/omtf_config/Patterns_0x0003.xml")                               
0027 
0028   #if commented the default values are 0-0
0029   #-3 to 4 is the range of the OMTF DAQ readout, so should be used e.g. in the DQM data to emulator comparison
0030   bxMin = cms.int32(0),
0031   bxMax = cms.int32(0)
0032 )
0033