Changeset 2808 in Sophya for trunk/SophyaLib/HiStats/basedtable.cc
- Timestamp:
- Jun 14, 2005, 1:25:05 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/HiStats/basedtable.cc
r2699 r2808 131 131 } 132 132 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 */ 134 142 sa_size_t BaseDataTable::AddLine(const r_8* data) 135 143 { … … 155 163 } 156 164 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 */ 157 174 sa_size_t BaseDataTable::AddLine(const MuTyV* data) 158 175 { … … 247 264 } 248 265 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 */ 251 271 void BaseDataTable::Show(ostream& os) const 252 272 {
Note:
See TracChangeset
for help on using the changeset viewer.