/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQMOffline/Alignment/python/LaserAlignmentT0ProducerDQM_cfi.py
46 строк
2 KB
Marcel Andre Schneider
Another round of automatic config changes...
20 фев 2018, 11:43
20 фев 2018, 11:43
b5c7f38
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer LaserAlignmentT0ProducerDQM = DQMEDAnalyzer( 'LaserAlignmentT0ProducerDQM', # specify the input digi collections to run on DigiProducerList = cms.VPSet( cms.PSet( DigiLabel = cms.string( 'ZeroSuppressed' ), DigiType = cms.string( 'Processed' ), DigiProducer = cms.string( 'ALCARECOTkAlLASsiStripDigis' ) ), cms.PSet( DigiLabel = cms.string( 'VirginRaw' ), DigiType = cms.string( 'Raw' ), DigiProducer = cms.string( 'ALCARECOTkAlLASsiStripDigis' ) ), cms.PSet( DigiLabel = cms.string( 'ProcessedRaw' ), DigiType = cms.string( 'Raw' ), DigiProducer = cms.string( 'ALCARECOTkAlLASsiStripDigis' ) ), cms.PSet( DigiLabel = cms.string( 'ScopeMode' ), DigiType = cms.string( 'Raw' ), DigiProducer = cms.string( 'ALCARECOTkAlLASsiStripDigis' ) ) ), # the lower threshold for the strip amplitude; # profiles with digis above will be considered containing signal LowerAdcThreshold = cms.uint32( 15 ), # the upper threshold for the strip amplitude; # profiles with digis below will be considered containing a signal UpperAdcThreshold = cms.uint32( 220 ), # the dqm folder name to write to FolderName = cms.string( "TkAlLAS" ), # additionally dump in plain ROOT file? OutputInPlainROOT = cms.bool( False ), # if plain ROOT output, then write to this file PlainOutputFileName = cms.string( "TkAlLAS.dqm.root" ) )