/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Modules/python/printContent_cfi.py
17 строк
831 B
Giulio Eulisse
Snapshot of CMSSW_6_2_0_pre8.
26 июн 2013, 18:12
26 июн 2013, 18:12
214ab73
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms #print what data items are available in the Event printContent = cms.EDAnalyzer("EventContentAnalyzer", #should we print data? (sets to 'true' if verboseForModuleLabels has entries) verbose = cms.untracked.bool(False), #how much to indent when printing verbosely verboseIndentation = cms.untracked.string(' '), #string used at the beginning of all output of this module indentation = cms.untracked.string('++'), #data from which modules to print (all if empty) verboseForModuleLabels = cms.untracked.vstring(), # which data from which module should we get without printing getDataForModuleLabels = cms.untracked.vstring(), #should we get data? (sets to 'true' if getDataFormModuleLabels has entries) getData = cms.untracked.bool(False) )