CMS 3D CMS Logo

Classes | Functions
DDHtmlFormatter.h File Reference
#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.

Classes

class  DDFrameGenerator
 
class  DDHtmlDetails
 
class  DDHtmlFormatter
 
class  DDHtmlLpDetails
 
class  DDHtmlMaDetails
 
class  DDHtmlRoDetails
 
class  DDHtmlSoDetails
 
class  DDHtmlSpDetails
 
class  DDNsGenerator
 

Functions

void dd_html_frameset (std::ostream &os)
 
void dd_html_menu (std::ostream &os)
 
void dd_html_menu_frameset (std::ostream &os)
 
void dd_html_ro ()
 
void dd_to_html (DDHtmlDetails &det)
 
std::ostream & operator<< (std::ostream &o, const DDHtmlFormatter &f)
 

Function Documentation

void dd_html_frameset ( std::ostream &  os)
void dd_html_menu ( std::ostream &  os)
void dd_html_menu_frameset ( std::ostream &  os)
void dd_html_ro ( )
void dd_to_html ( DDHtmlDetails det)

Definition at line 304 of file DDHtmlFormatter.cc.

References DDHtmlDetails::category(), gather_cfg::cout, DDHtmlDetails::details(), dir, f, alignmentValidation::fname, eostools::mkdir(), DDHtmlDetails::names(), mps_fire::result, and DDHtmlDetails::text().

Referenced by DDHtmlSpDetails::DDHtmlSpDetails().

305 {
306  cout << "---> dd_to_html() called with category=" << dtls.category() << endl;
307  const string & category = dtls.category();
308  const string & text = dtls.text();
309  ns_type & names = dtls.names();
310 
311  mkdir( category.c_str(), 0755 );
312 
313  // first the namespaces
314  string ns_fname = category + "/ns.html";
315  ofstream ns_file(ns_fname.c_str());
316  DDNsGenerator ns_gen(ns_file, text, "_list", names, "");
317  ns_gen.doit();
318  ns_file.close();
319 
320  // list all logical parts per namespace
321  ns_type::const_iterator it(names.begin()), ed(names.end());
322  for( ; it != ed; ++it ) {
323 
324  const string & ns = it->first;
325 
326  // create directories named like the namespaces
327  string dir = category + "/" + ns;
328  mkdir( dir.c_str(), 0755 );
329 
330  // create a html file listing all instances of a namespace
331  string fname = category + "/" + ns + "/list.html";
332  ofstream list_file(fname.c_str());
334  list_file << f.header(text)
335  << f.p("Instances in Namespace <b>" + ns + "</b><br>");
336  list_file << f.ul();
337  // loop over all instances of a single namespace
338  set<string>::const_iterator nit(it->second.begin()), ned(it->second.end());
339  for(; nit != ned; ++nit) {
340 
341  const string & nm = *nit;
342  string result_s = nm;
343 
344  // details for each instance
345  string d_fname = category + "/" + ns + "/" + nm + ".html";
346  ofstream detail_file(d_fname.c_str());
347  DDName an(nm,ns);
348  bool result = dtls.details(detail_file, an);
349 
350  if (!result) result_s = ">> ERROR: " + nm + " <<";
351  list_file << f.li(f.lnk(nm+".html", result_s, "_details"));
352 
353  }
354  list_file << f.ulEnd() << f.footer();
355  }
356 }
static const HistoName names[]
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:15
double f[11][100]
string fname
main script
def mkdir(path)
Definition: eostools.py:250
dbl *** dir
Definition: mlp_gen.cc:35
std::map< std::string, std::set< std::string > > ns_type
std::ostream& operator<< ( std::ostream &  o,
const DDHtmlFormatter f 
)