/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQMServices/Components/python/DQMEventInfo_cfi.py
14 строк
619 B
mmusich
do not show the HLT GT by default
24 июн 2024, 11:03
24 июн 2024, 11:03
29c499d
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms # DQM Environment from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer dqmEnv = DQMEDAnalyzer('DQMEventInfo', # put your subsystem name here (this goes into the foldername) subSystemFolder = cms.untracked.string('YourSubsystem'), # set the window for eventrate calculation (in minutes) eventRateWindow = cms.untracked.double(0.5), # define folder to store event info (default: EventInfo) eventInfoFolder = cms.untracked.string('EventInfo'), # use the Global Tag of the last (!) HLT processing showHLTGlobalTag = cms.untracked.bool(False) )