![]() |
Reference documentation for deal.II version 8.1.0
|
#include <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 |
template<class Archive > | |
void | load (Archive &ar, const unsigned int version) |
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 571 of file table_handler.h.
TableHandler::Column::Column | ( | ) |
Constructor needed by STL maps.
TableHandler::Column::Column | ( | const std::string & | tex_caption | ) |
Constructor.
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.
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 922 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.
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 615 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 627 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 640 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 648 of file table_handler.h.
bool TableHandler::Column::scientific |
scientific
=false means fixed point notation.
Definition at line 654 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 668 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 673 of file table_handler.h.