Reference documentation for deal.II version 9.1.1
|
#include <deal.II/base/table_handler.h>
Public Member Functions | |
Column () | |
Column (const std::string &tex_caption) | |
void | pad_column_below (const unsigned int length) |
template<class Archive > | |
void | save (Archive &ar, const unsigned int version) const |
void | invalidate_cache () |
Public Attributes | |
std::vector< internal::TableEntry > | entries |
std::string | tex_caption |
std::string | tex_format |
unsigned int | precision |
bool | scientific |
unsigned int | flag |
unsigned int | max_length |
Structure encapsulating all the data that is needed to describe one column of a table.
Definition at line 610 of file table_handler.h.
TableHandler::Column::Column | ( | ) |
Constructor needed by std::map
.
Definition at line 147 of file table_handler.cc.
TableHandler::Column::Column | ( | const std::string & | tex_caption | ) |
Constructor.
Definition at line 136 of file table_handler.cc.
void TableHandler::Column::pad_column_below | ( | const unsigned int | length | ) |
Pad this column with default constructed elements to the number of rows given by the argument.
Definition at line 159 of file table_handler.cc.
void TableHandler::Column::save | ( | Archive & | ar, |
const unsigned int | version | ||
) | const |
Read or write the data of this object to or from a stream for the purpose of serialization.
Definition at line 945 of file table_handler.h.
void TableHandler::Column::invalidate_cache | ( | ) |
Invalidates the string cache of all the entries and recomputes the maximum length max_length.
Definition at line 179 of file table_handler.cc.
std::vector<internal::TableEntry> TableHandler::Column::entries |
List of entries within this column. Values are always immediately converted to strings to provide a uniform method of lookup.
Definition at line 653 of file table_handler.h.
std::string TableHandler::Column::tex_caption |
The caption of the column in tex output. By default, this is the key string that is given to the TableHandler
by TableHandler::add_value(...)
. This may be changed by calling TableHandler::set_tex_caption(...)
.
Definition at line 661 of file table_handler.h.
std::string TableHandler::Column::tex_format |
The column format in tex output. By default, this is "c"
, meaning ‘centered’. This may be changed by calling TableHandler::set_tex_format(...)
with "c", "r", "l"
for centered, right or left.
Definition at line 670 of file table_handler.h.
unsigned int TableHandler::Column::precision |
Double or float entries are written with this precision (set by the user). The default is 4.
Definition at line 676 of file table_handler.h.
bool TableHandler::Column::scientific |
scientific
=false means fixed point notation.
Definition at line 681 of file table_handler.h.
unsigned int TableHandler::Column::flag |
Flag that may be used by derived classes for arbitrary purposes.
In particular, the ConvergenceTable class uses the flag to denote columns for which convergence information has already been computed, or should not be computed at all.
Definition at line 690 of file table_handler.h.
unsigned int TableHandler::Column::max_length |
This entry caches the maximum length in characters for all entries in this table.
Definition at line 696 of file table_handler.h.