/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/DTMonitorModule/python/dtSegmentTask_cfi.py
21 строка
2 KB
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 dtSegmentAnalysisMonitor = DQMEDAnalyzer('DTSegmentAnalysisTask', # switch for verbosity debug = cms.untracked.bool(False), # label of 4D segments recHits4DLabel = cms.untracked.string('dt4DSegments'), # skip segments with noisy cells (reads from DB) checkNoisyChannels = cms.untracked.bool(True), # switch off uneeded histograms detailedAnalysis = cms.untracked.bool(False), # top folder for the histograms in DQMStore topHistoFolder = cms.untracked.string('DT/02-Segments'), # hlt DQM mode hltDQMMode = cms.untracked.bool(False), # max phi angle of reconstructed segments phiSegmCut = cms.untracked.double(30.), # min # hits of segment used to validate a segment in WB+-2/SecX/MB1 nhitsCut = cms.untracked.int32(11) )