|
ROOT
ROOT project
|
Class to write on .dat the result - daughter of FilePrinter and Mother of GnuPlotPrinter. More...
#include <writer_def.hpp>


Public Member Functions | |
| PrinterDAT (const std::string &fname, bool ow_mode) | |
| Constructor for the PrinterDAT class. | |
| void | write_values (const V &value) override |
| Writes a given result into the .dat file. | |
| void | write_values (const Eigen::Vector2d &value) |
Public Member Functions inherited from PrinterFile< V > | |
| PrinterFile (const std::string &fname, bool ow_mode) | |
| The constructor for PrinterFile class. | |
Public Member Functions inherited from PrinterBase< V > | |
| PrinterBase ()=default | |
| Default constructor for the PrinterBase class. | |
| virtual | ~PrinterBase ()=default |
| Virtual destructor for the PrinterBase class. | |
Additional Inherited Members | |
Protected Attributes inherited from PrinterFile< V > | |
| std::string | filename |
| The name of output file, without the extension. | |
| bool | append |
| std::ofstream | file |
| The actual file, saved in order not to access it at each printing iteration. | |
Class to write on .dat the result - daughter of FilePrinter and Mother of GnuPlotPrinter.
| PrinterDAT< V >::PrinterDAT | ( | const std::string & | fname, |
| bool | ow_mode | ||
| ) |
Constructor for the PrinterDAT class.
| fname | The name of the file to write on |
| ow_mode | Option to overwrite or append the file |
| void PrinterDAT< Eigen::Vector2d >::write_values | ( | const Eigen::Vector2d & | value | ) |
|
overridevirtual |
Writes a given result into the .dat file.
| value | The value to write |
Implements PrinterBase< V >.