CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
printContent_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #print what data items are available in the Event
4 printContent = cms.EDAnalyzer("EventContentAnalyzer",
5  #should we print data? (sets to 'true' if verboseForModuleLabels has entries)
6  verbose = cms.untracked.bool(False),
7  #how much to indent when printing verbosely
8  verboseIndentation = cms.untracked.string(' '),
9  #string used at the beginning of all output of this module
10  indentation = cms.untracked.string('++'),
11  #data from which modules to print (all if empty)
12  verboseForModuleLabels = cms.untracked.vstring(),
13  # which data from which module should we get without printing
14  getDataForModuleLabels = cms.untracked.vstring(),
15  #should we get data? (sets to 'true' if getDataFormModuleLabels has entries)
16  getData = cms.untracked.bool(False)
17 )
18 
19