EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CbmTextReportElement.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file CbmTextReportElement.h
1 
7 #ifndef CBMTEXTREPORTELEMENT_H_
8 #define CBMTEXTREPORTELEMENT_H_
9 
10 #include "CbmReportElement.h"
11 #include "TObject.h"
12 #include <string>
13 
14 using std::string;
15 using std::vector;
16 
24 {
25 public:
30 
34  virtual ~CbmTextReportElement();
35 
39  virtual string TableBegin(
40  const string& caption,
41  const vector<string>& colNames) const;
42 
46  virtual string TableEnd() const;
47 
51  virtual string TableEmptyRow(
52  Int_t nofCols,
53  const string& name) const;
54 
58  virtual string TableRow(
59  const vector<string>& row) const;
60 
64  virtual string Image(
65  const string& title,
66  const string& file) const;
67 
71  virtual string DocumentBegin() const;
72 
76  virtual string DocumentEnd() const;
77 
81  virtual string Title(
82  Int_t size,
83  const string& title) const;
84 
85 private:
86  string FormatCell(
87  const string& cell) const;
88 
89  Int_t fColW; // column width
90 
91  ClassDef(CbmTextReportElement, 1)
92 };
93 
94 #endif /* CBMTEXTREPORTELEMENT_H_ */