Ignore:
Timestamp:
Jun 14, 2005, 1:25:05 PM (20 years ago)
Author:
ansari
Message:

MAJ documentation - Reza 14/6/2005

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/HiStats/basedtable.cc

    r2699 r2808  
    131131}
    132132
    133 
     133//! Adds a line (or row to the table) with r_8* inout data
     134/*!
     135  The data to be added is provided as an array (vector) of double (r_8).
     136  The necessary data conversion is performed, depending on each
     137  column's data typeconverted to the data type.
     138  Return the new number of table rows (lines / entries)
     139  \param data : Data for each cell of the row to be appended
     140  (data[k] k=0..NbColumns())
     141*/
    134142sa_size_t BaseDataTable::AddLine(const r_8* data)
    135143{
     
    155163}
    156164
     165//! Adds a line (or row to the table) with input data as an array of MuTyV
     166/*!
     167  The data to be added is provided as an array (vector) of MuTyV.
     168  The MuTyV class conversion operators are used to match against each
     169  cell data type.
     170  Return the new number of table rows (lines / entries)
     171  \param data : Data (MuTyV*) for each cell of the row to be appended
     172  (data[k] k=0..NbColumns())
     173*/
    157174sa_size_t BaseDataTable::AddLine(const MuTyV* data)
    158175{
     
    247264}
    248265
    249 
    250 //! Prints table definition and number of entries
     266/*! In addition to printing the number of entries and column names,
     267  this method prints also minimum/maximum value for each column.
     268  This information might be computed when the Show() method is called.
     269  This may take some time for tables with large number of entries (>~ 10^6)
     270*/
    251271void   BaseDataTable::Show(ostream& os) const
    252272{
Note: See TracChangeset for help on using the changeset viewer.