CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes | Static Private Attributes
SummaryPlotXmlParser Class Reference

Parses the "summary plot" xml configuration file. More...

#include <SummaryPlotXmlParser.h>

Public Member Functions

void parseXML (const std::string &xml_file)
 
void print (std::stringstream &) const
 
std::vector< SummaryPlotsummaryPlots (const sistrip::RunType &)
 
 SummaryPlotXmlParser ()
 
 ~SummaryPlotXmlParser ()
 

Private Attributes

std::map< sistrip::RunType, std::vector< SummaryPlot > > plots_
 

Static Private Attributes

static const std::string granularityAttr_ = "granularity"
 
static const std::string levelAttr_ = "level"
 
static const std::string monitorableAttr_ = "monitorable"
 
static const std::string presentationAttr_ = "presentation"
 
static const std::string rootTag_ = "root"
 
static const std::string runTypeAttr_ = "name"
 
static const std::string runTypeTag_ = "RunType"
 
static const std::string summaryPlotTag_ = "SummaryPlot"
 
static const std::string viewAttr_ = "view"
 

Detailed Description

Parses the "summary plot" xml configuration file.

Author
P.Kalavase, R.Bainbridge

Definition at line 26 of file SummaryPlotXmlParser.h.

Constructor & Destructor Documentation

◆ SummaryPlotXmlParser()

SummaryPlotXmlParser::SummaryPlotXmlParser ( )

Default constructor.

Definition at line 22 of file SummaryPlotXmlParser.cc.

22 { plots_.clear(); }

◆ ~SummaryPlotXmlParser()

SummaryPlotXmlParser::~SummaryPlotXmlParser ( )
inline

Default destructor.

Definition at line 34 of file SummaryPlotXmlParser.h.

34 { ; }

Member Function Documentation

◆ parseXML()

void SummaryPlotXmlParser::parseXML ( const std::string &  xml_file)

Fill the map with the required tag/names and values

Definition at line 41 of file SummaryPlotXmlParser.cc.

41  {
42  plots_.clear();
43 
44  boost::property_tree::ptree xmltree;
45  boost::property_tree::read_xml(filename, xmltree);
46 
47  auto runs = xmltree.find(rootTag_);
48  if (runs == xmltree.not_found()) {
49  }
50 
51  // Iterate through nodes
52  for (auto& xml : xmltree) {
53  if (xml.first == rootTag_) { // find main root
54  for (auto& runtype : xml.second) {
55  if (runtype.first == runTypeTag_) { // enter in the run type
56  sistrip::RunType run_type =
58  for (auto& sumplot : runtype.second) {
59  if (sumplot.first == summaryPlotTag_) {
60  std::string mon = sumplot.second.get<std::string>("<xmlattr>." + monitorableAttr_);
61  std::string pres = sumplot.second.get<std::string>("<xmlattr>." + presentationAttr_);
62  std::string level = sumplot.second.get<std::string>("<xmlattr>." + levelAttr_);
63  std::string gran = sumplot.second.get<std::string>("<xmlattr>." + granularityAttr_);
64  SummaryPlot plot(mon, pres, gran, level);
65  plots_[run_type].push_back(plot);
66  }
67  }
68  if (plots_[run_type].empty()) {
69  std::stringstream ss;
70  ss << "[SummaryPlotXmlParser::" << __func__ << "]"
71  << " Unable to find any summary plot for " << runTypeTag_ << " nodes!"
72  << " Empty xml summary histo block?";
73  throw(std::runtime_error(ss.str()));
74  return;
75  }
76  } else {
77  std::stringstream ss;
78  ss << "[SummaryPlotXmlParser::" << __func__ << "]"
79  << " Unable to find any " << runTypeTag_ << " nodes!"
80  << " Empty xml run-type block?";
81  throw(std::runtime_error(ss.str()));
82  return;
83  }
84  }
85  } else {
86  std::stringstream ss;
87  ss << "[SummaryPlotXmlParser::" << __func__ << "]"
88  << " Did not find \"" << rootTag_ << "\" tag! "
89  << " Tag name is " << rootTag_;
90  throw(std::runtime_error(ss.str()));
91  return;
92  }
93  }
94 }

References relativeConstraints::empty, corrVsCorr::filename, personalPlayback::level, LaserDQM_cfi::mon, plotFactory::plot, writedatasetfile::runs, SiStripCommissioningClient_cfg::runtype, SiStripEnumsAndStrings::runType(), contentValuesCheck::ss, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by SiStripCommissioningOfflineClient::beginRun().

◆ print()

void SummaryPlotXmlParser::print ( std::stringstream &  ss) const

Debug print method.

Definition at line 107 of file SummaryPlotXmlParser.cc.

107  {
108  ss << "[SummaryPlotXmlParser::SummaryPlot::" << __func__ << "]"
109  << " Dumping contents of parsed XML file: " << std::endl;
110  using namespace sistrip;
111  typedef std::vector<SummaryPlot> Plots;
112  std::map<RunType, Plots>::const_iterator irun = plots_.begin();
113  for (; irun != plots_.end(); irun++) {
114  ss << " RunType=\"" << SiStripEnumsAndStrings::runType(irun->first) << "\"" << std::endl;
115  if (irun->second.empty()) {
116  ss << " No summary plots for this RunType!";
117  } else {
118  Plots::const_iterator iplot = irun->second.begin();
119  for (; iplot != irun->second.end(); iplot++) {
120  ss << *iplot << std::endl;
121  }
122  }
123  }
124 }

References heavyFlavorValidationHarvestingSequence_cff::Plots, SiStripEnumsAndStrings::runType(), and contentValuesCheck::ss.

◆ summaryPlots()

std::vector< SummaryPlot > SummaryPlotXmlParser::summaryPlots ( const sistrip::RunType run_type)

Returns SummaryPlot objects for given commissioning task.

Definition at line 26 of file SummaryPlotXmlParser.cc.

26  {
27  if (plots_.empty()) {
28  edm::LogWarning(mlDqmClient_) << "[SummaryPlotXmlParser" << __func__ << "]"
29  << " You have not called the parseXML function,"
30  << " or your XML file is erronious" << std::endl;
31  }
32  if (plots_.find(run_type) != plots_.end()) {
33  return plots_[run_type];
34  } else {
35  return std::vector<SummaryPlot>();
36  }
37 }

References sistrip::mlDqmClient_.

Referenced by SiStripCommissioningOfflineClient::beginRun().

Member Data Documentation

◆ granularityAttr_

const std::string SummaryPlotXmlParser::granularityAttr_ = "granularity"
staticprivate

Definition at line 64 of file SummaryPlotXmlParser.h.

◆ levelAttr_

const std::string SummaryPlotXmlParser::levelAttr_ = "level"
staticprivate

Definition at line 63 of file SummaryPlotXmlParser.h.

◆ monitorableAttr_

const std::string SummaryPlotXmlParser::monitorableAttr_ = "monitorable"
staticprivate

Definition at line 60 of file SummaryPlotXmlParser.h.

◆ plots_

std::map<sistrip::RunType, std::vector<SummaryPlot> > SummaryPlotXmlParser::plots_
private

Container holding the SummaryPlot objects.

Definition at line 51 of file SummaryPlotXmlParser.h.

◆ presentationAttr_

const std::string SummaryPlotXmlParser::presentationAttr_ = "presentation"
staticprivate

Definition at line 61 of file SummaryPlotXmlParser.h.

◆ rootTag_

const std::string SummaryPlotXmlParser::rootTag_ = "root"
staticprivate

Definition at line 54 of file SummaryPlotXmlParser.h.

◆ runTypeAttr_

const std::string SummaryPlotXmlParser::runTypeAttr_ = "name"
staticprivate

Definition at line 56 of file SummaryPlotXmlParser.h.

◆ runTypeTag_

const std::string SummaryPlotXmlParser::runTypeTag_ = "RunType"
staticprivate

Definition at line 55 of file SummaryPlotXmlParser.h.

◆ summaryPlotTag_

const std::string SummaryPlotXmlParser::summaryPlotTag_ = "SummaryPlot"
staticprivate

Definition at line 59 of file SummaryPlotXmlParser.h.

◆ viewAttr_

const std::string SummaryPlotXmlParser::viewAttr_ = "view"
staticprivate

Definition at line 62 of file SummaryPlotXmlParser.h.

personalPlayback.level
level
Definition: personalPlayback.py:22
SiStripEnumsAndStrings::runType
static std::string runType(const sistrip::RunType &)
Definition: SiStripEnumsAndStrings.cc:39
SummaryPlotXmlParser::presentationAttr_
static const std::string presentationAttr_
Definition: SummaryPlotXmlParser.h:61
SummaryPlotXmlParser::plots_
std::map< sistrip::RunType, std::vector< SummaryPlot > > plots_
Definition: SummaryPlotXmlParser.h:51
writedatasetfile.runs
runs
Definition: writedatasetfile.py:27
sistrip::RunType
RunType
Definition: ConstantsForRunType.h:70
plotFactory.plot
plot
Definition: plotFactory.py:109
heavyFlavorValidationHarvestingSequence_cff.Plots
Plots
Definition: heavyFlavorValidationHarvestingSequence_cff.py:109
sistrip::mlDqmClient_
static const char mlDqmClient_[]
Definition: ConstantsForLogger.h:19
contentValuesCheck.ss
ss
Definition: contentValuesCheck.py:33
SummaryPlotXmlParser::rootTag_
static const std::string rootTag_
Definition: SummaryPlotXmlParser.h:54
SummaryPlotXmlParser::summaryPlotTag_
static const std::string summaryPlotTag_
Definition: SummaryPlotXmlParser.h:59
corrVsCorr.filename
filename
Definition: corrVsCorr.py:123
LaserDQM_cfi.mon
mon
Definition: LaserDQM_cfi.py:3
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
edm::LogWarning
Definition: MessageLogger.h:141
SummaryPlotXmlParser::granularityAttr_
static const std::string granularityAttr_
Definition: SummaryPlotXmlParser.h:64
SummaryPlotXmlParser::levelAttr_
static const std::string levelAttr_
Definition: SummaryPlotXmlParser.h:63
SummaryPlotXmlParser::runTypeAttr_
static const std::string runTypeAttr_
Definition: SummaryPlotXmlParser.h:56
SummaryPlotXmlParser::runTypeTag_
static const std::string runTypeTag_
Definition: SummaryPlotXmlParser.h:55
relativeConstraints.empty
bool empty
Definition: relativeConstraints.py:46
sistrip
sistrip classes
Definition: SiStripQualityHelpers.h:14
SummaryPlotXmlParser::monitorableAttr_
static const std::string monitorableAttr_
Definition: SummaryPlotXmlParser.h:60
SummaryPlot
Class holding info that defines a summary plot.
Definition: SummaryPlot.h:19
SiStripCommissioningClient_cfg.runtype
runtype
Definition: SiStripCommissioningClient_cfg.py:9