EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CbmHtmlReportElement.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file CbmHtmlReportElement.h
1 
7 #ifndef CBMHTMLREPORTELEMENT_H_
8 #define CBMHTMLREPORTELEMENT_H_
9 
10 #include "CbmReportElement.h"
11 #include <string>
12 
13 using std::string;
14 using std::vector;
15 
23 {
24 public:
29 
33  virtual ~CbmHtmlReportElement();
34 
38  virtual string TableBegin(
39  const string& caption,
40  const vector<string>& colNames) const;
41 
45  virtual string TableEnd() const;
46 
50  virtual string TableEmptyRow(
51  int nofCols,
52  const string& name) const;
53 
57  virtual string TableRow(
58  const vector<string>& row) const;
59 
63  virtual string Image(
64  const string& title,
65  const string& file) const;
66 
70  virtual string DocumentBegin() const;
71 
75  virtual string DocumentEnd() const;
76 
80  virtual string Title(
81  int size,
82  const string& title) const;
83 
84  ClassDef(CbmHtmlReportElement, 1)
85 };
86 
87 #endif /* CBMHTMLREPORTELEMENT_H_ */