/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/DTMonitorModule/python/dtNoiseTask_cfi.py
16 строк
928 B
NiharSaha
Migration of input collection parameters to untracked for CTPPS and DTMonitorModule
31 июл 2022, 16:51
31 июл 2022, 16:51
ca9319b
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer dtNoiseMonitor = DQMEDAnalyzer('DTNoiseTask', # the label to retrieve the DT digis dtDigiLabel = cms.untracked.InputTag('dtunpacker'), # switch for time box booking doTbHistos = cms.untracked.bool(False), # the name of the 4D rec hits collection recHits4DLabel = cms.untracked.string('dt4DSegments'), # switch for segment veto doSegmentVeto = cms.untracked.bool(False), # safe margin (ns) between ttrig and beginning of counting area safeMargin = cms.untracked.double(100.) )