00001 import FWCore.ParameterSet.Config as cms 00002 00003 #print what data items are available in the Event 00004 printContent = cms.EDAnalyzer("EventContentAnalyzer", 00005 #should we print data? (sets to 'true' if verboseForModuleLabels has entries) 00006 verbose = cms.untracked.bool(False), 00007 #how much to indent when printing verbosely 00008 verboseIndentation = cms.untracked.string(' '), 00009 #string used at the beginning of all output of this module 00010 indentation = cms.untracked.string('++'), 00011 #data from which modules to print (all if empty) 00012 verboseForModuleLabels = cms.untracked.vstring(), 00013 # which data from which module should we get without printing 00014 getDataForModuleLabels = cms.untracked.vstring(), 00015 #should we get data? (sets to 'true' if getDataFormModuleLabels has entries) 00016 getData = cms.untracked.bool(False) 00017 ) 00018 00019