CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
FWTableViewManager::TableHandle Class Reference

Public Member Functions

TableHandlecolumn (const char *formula, int precision, const char *name)
 
TableHandlecolumn (const char *label, int precision)
 
 TableHandle (const char *name, TableSpecs &specs)
 

Private Attributes

std::string m_name
 
TableSpecsm_specs
 

Detailed Description

Definition at line 103 of file FWTableViewManager.h.

Constructor & Destructor Documentation

FWTableViewManager::TableHandle::TableHandle ( const char *  name,
TableSpecs specs 
)
inline

Member Function Documentation

FWTableViewManager::TableHandle & FWTableViewManager::TableHandle::column ( const char *  name,
int  precision,
const char *  expression 
)

Define a column in the current table.

name to be used as header of the column.

precision specifying the number of significant digits in the fractional part.

expression to be used to retrieve the value from the object.

Definition at line 250 of file FWTableViewManager.cc.

References FWTableViewManager::TableEntry::expression, dataset::name, FWTableViewManager::TableEntry::name, common_cff::precision, and FWTableViewManager::TableEntry::precision.

Referenced by FWTableViewManager::setFrom(), and FWTableViewManager::tableFormats().

251 {
252  TableEntry columnEntry;
253  columnEntry.name = name;
254  columnEntry.precision = precision;
255  columnEntry.expression = expression;
256 
257  m_specs[m_name].push_back(columnEntry);
258  return *this;
259 }
TableHandle& FWTableViewManager::TableHandle::column ( const char *  label,
int  precision 
)
inline

Definition at line 107 of file FWTableViewManager.h.

108  {
109  return column(label, precision, label);
110  }
TableHandle & column(const char *formula, int precision, const char *name)

Member Data Documentation

std::string FWTableViewManager::TableHandle::m_name
private

Definition at line 118 of file FWTableViewManager.h.

TableSpecs& FWTableViewManager::TableHandle::m_specs
private

Definition at line 119 of file FWTableViewManager.h.