#include <iostream>
#include <string>
#include <sstream>
#include <map>
#include <set>
#include <vector>
#include "DetectorDescription/RegressionTest/interface/DDErrorDetection.h"
Go to the source code of this file.
void dd_html_frameset |
( |
std::ostream & |
os | ) |
|
void dd_html_menu |
( |
std::ostream & |
os | ) |
|
void dd_html_menu_frameset |
( |
std::ostream & |
os | ) |
|
Definition at line 290 of file DDHtmlFormatter.cc.
References DDHtmlDetails::category(), python.rootplot.argparse::category, gather_cfg::cout, DDHtmlDetails::details(), dir, f, alignmentValidation::fname, DDHtmlDetails::names(), cscdqm::h::names, query::result, runonSM::text, and DDHtmlDetails::text().
292 cout <<
"---> dd_to_html() called with category=" << dtls.category() << endl;
293 const string &
category = dtls.category();
294 const string &
text = dtls.text();
297 mkdir( category.c_str(), 0755 );
300 string ns_fname = category +
"/ns.html";
301 ofstream ns_file(ns_fname.c_str());
307 ns_type::const_iterator it(names.begin()), ed(names.end());
308 for( ; it != ed; ++it ) {
310 const string & ns = it->first;
313 string dir = category +
"/" + ns;
314 mkdir( dir.c_str(), 0755 );
317 string fname = category +
"/" + ns +
"/list.html";
318 ofstream list_file(fname.c_str());
320 list_file << f.header(text)
321 << f.p(
"Instances in Namespace <b>" + ns +
"</b><br>");
324 set<string>::const_iterator nit(it->second.begin()), ned(it->second.end());
325 for(; nit != ned; ++nit) {
327 const string & nm = *nit;
328 string result_s = nm;
331 string d_fname = category +
"/" + ns +
"/" + nm +
".html";
332 ofstream detail_file(d_fname.c_str());
334 bool result = dtls.details(detail_file, an);
336 if (!result) result_s =
">> ERROR: " + nm +
" <<";
337 list_file << f.li(f.lnk(nm+
".html", result_s,
"_details"));
340 list_file << f.ulEnd() << f.footer();
static const HistoName names[]
DDName is used to identify DDD entities uniquely.
std::map< std::string, std::set< std::string > > ns_type