/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQMOffline/L1Trigger/python/L1TMonitorClientOffline_cff.py
50 строк
1 KB
Thomas Reis
Add L1T offline harvesting for object comparison plots and add calo layer2 emulator plots.
13 авг 2018, 18:47
13 авг 2018, 18:47
e8345bc
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms # adapt the L1TMonitorClient_cff configuration to offline DQM # # default configuration valid for online DQM # # configuration for online DQM # process subsystem histograms in endLumi # process subsystem histograms in endRun # # configuration for offline DQM # process subsystem histograms in endRun only # # DQM online L1 Trigger client modules from DQM.L1TMonitorClient.L1TMonitorClient_cff import * # changes for offline environment # DTTF to offline configuration l1tDttfClient.online = False # CSCTF client l1tCsctfClient.runInEndLumi = False # RPC client l1tRpctfClient.runInEndLumi = False # GMT client l1tGmtClient.runInEndLumi = False # GCT client l1tGctClient.runInEndLumi = False # stage 2 from DQM.L1TMonitorClient.L1TStage2MonitorClient_cff import * l1tStage2MonitorClientOffline = cms.Sequence(l1tStage2MonitorClient) l1tStage1Layer2Client.runInEndLumi = False from DQM.L1TMonitorClient.L1TStage2EMTFEventInfoClient_cfi import * l1tStage2EMTFEventInfoClient.runInEndLumi = False from DQM.L1TMonitorClient.L1TStage2EventInfoClient_cfi import * l1tStage2EventInfoClient.runInEndLumi = False from DQM.L1TMonitorClient.L1TStage2EmulatorEventInfoClient_cfi import * l1tStage2EmulatorEventInfoClient.runInEndLumi = False