/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/L1TMonitor/python/L1TEmulatorMonitor_cff.py
138 строк
4 KB
Nihar Ranjan Saha
Update L1TEmulatorMonitor_cff.py
24 дек 2021, 20:28
Не верифицирован
24 дек 2021, 20:28
d3eba7c
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms # L1 Emulator DQM sequence # # used by DQM GUI: DQM/Integration/python/test/l1temulator_dqm_sourceclient-*_cfg.py # # N. Leonardo 2008-02-XX initial version # # V.M. Ghete 2010-10-22 revised version of L1 emulator DQM # proper definition of sequences # hardware validation sequence - it runs also the L1 emulator from L1Trigger.HardwareValidation.L1HardwareValidation_cff import * # temporary fix for L1 GT emulator configuration in hardware validation valGtDigis.RecordLength = cms.vint32(3, 5) valGtDigis.AlternativeNrBxBoardDaq = 0x101 valGtDigis.AlternativeNrBxBoardEvm = 0x2 valGtDigis.AlgorithmTriggersUnprescaled = True valGtDigis.TechnicalTriggersUnprescaled = True valGtDigis.TechnicalTriggersVetoUnmasked = True valStage1GtDigis.RecordLength = cms.vint32(3, 5) valStage1GtDigis.AlternativeNrBxBoardDaq = 0x101 valStage1GtDigis.AlternativeNrBxBoardEvm = 0x2 valStage1GtDigis.AlgorithmTriggersUnprescaled = True valStage1GtDigis.TechnicalTriggersUnprescaled = True valStage1GtDigis.TechnicalTriggersVetoUnmasked = True # DQM modules from DQM.L1TMonitor.L1TDEMON_cfi import * from DQM.L1TMonitor.L1TDEMONStage1_cfi import * from DQM.L1TMonitor.L1TdeGCT_cfi import * from DQM.L1TMonitor.L1TdeStage1Layer2_cfi import * from DQM.L1TMonitor.L1TdeRCT_cfi import * #Check if perLSsaving is enabled to mask MEs vs LS from Configuration.ProcessModifiers.dqmPerLSsaving_cff import dqmPerLSsaving dqmPerLSsaving.toModify(l1TdeRCT, perLSsaving=True) l1TdeRCTRun1 = l1TdeRCT.clone() l1TdeRCT.rctSourceData = 'caloStage1Digis' #l1TdeRCT.gctSourceData = 'caloStage1Digis' l1TdeRCT.rctSourceEmul = 'valRctDigis' l1TdeRCTfromRCT = l1TdeRCT.clone( rctSourceData = 'rctDigis', HistFolder = 'L1TEMU/L1TdeRCT_FromRCT' ) from DQM.L1TMonitor.L1TdeCSCTF_cfi import * from DQM.L1TMonitor.L1GtHwValidation_cff import * # sequence for expert modules for data - emulator comparison # the modules are independent, so uses "+" ############################################################ # Stage1 Layer1 unpacker from EventFilter.RctRawToDigi.l1RctHwDigis_cfi import * # Stage1 unpacker from L1Trigger.L1TCommon.l1tRawToDigi_cfi import * # transfer stage1 format digis to legacy format digis from L1Trigger.L1TCalorimeter.caloStage1LegacyFormatDigis_cfi import * ############################################################ # GMT unpack from Fed813 in legacy stage1 parallel running from EventFilter.L1GlobalTriggerRawToDigi.l1GtUnpack_cfi import * l1GtUnpack.DaqGtInputTag = 'rawDataCollector' ############################################################# l1TdeRCTSeq = cms.Sequence( l1TdeRCT + l1TdeRCTfromRCT ) l1ExpertDataVsEmulator = cms.Sequence( l1TdeGCT + l1TdeCSCTF + l1GtHwValidation + l1TdeRCTRun1 ) l1EmulatorMonitorTask = cms.Task( l1GtUnpack ) l1EmulatorMonitor = cms.Sequence( l1demon+ l1ExpertDataVsEmulator, l1EmulatorMonitorTask ) # for use in processes where hardware validation is not run l1HwValEmulatorMonitorTask = cms.Task( l1GtUnpack ) l1HwValEmulatorMonitor = cms.Sequence( L1HardwareValidation* l1EmulatorMonitor, l1HwValEmulatorMonitorTask ) # for stage1 l1ExpertDataVsEmulatorStage1 = cms.Sequence( #caloStage1Digis* #caloStage1LegacyFormatDigis* l1TdeStage1Layer2 + l1TdeCSCTF + l1Stage1GtHwValidation + l1TdeRCTSeq ) l1EmulatorMonitorStage1 = cms.Sequence( #caloStage1Digis* #caloStage1LegacyFormatDigis* l1demonstage1+ l1ExpertDataVsEmulatorStage1 ) l1Stage1HwValEmulatorMonitorTask = cms.Task( rctDigis, #caloStage1Digis, #caloStage1LegacyFormatDigis, l1GtUnpack ) l1Stage1HwValEmulatorMonitor = cms.Sequence( L1HardwareValidationforStage1 + l1EmulatorMonitorStage1, l1Stage1HwValEmulatorMonitorTask )