#include <bdmbase.h>
Public Member Functions | |
logger () | |
Default constructor. | |
virtual int | add (const RV &rv, string prefix="") |
returns an identifier which will be later needed for calling the logit() function For empty RV it returns -1, this entry will be ignored by logit() . | |
virtual void | logit (int id, const vec &v) |
log this vector | |
virtual void | logit (int id, const double &d) |
log this double | |
virtual void | step () |
Shifts storage position for another time step. | |
virtual void | finalize () |
Finalize storing information. | |
virtual void | init () |
Initialize the storage. | |
virtual string | to_string () |
This method returns a basic info about the current instance. | |
virtual void | from_setting (const Setting &set) |
This method arrange instance properties according the data stored in the Setting structure. | |
virtual void | to_setting (Setting &set) const |
This method save all the instance properties into the Setting structure. | |
virtual void | validate () |
This method TODO. | |
Protected Attributes | |
Array< RV > | entries |
RVs of all logged variables. | |
Array< string > | names |
Names of logged quantities, e.g. names of algorithm variants. |
This class abstracts logging of results from implementation. This class replaces direct logging of results (e.g. to files or to global variables) by calling methods of a logger. Specializations of this abstract class for specific storage method are designed.