45 [[nodiscard]] std::string
type()
const override;
Common logging variables like time into run and local positions.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Common logging variables like time into run and local positions.
Definition CommonLog.hpp:31
Parent class for other data loggers which manages the output filestream.
Definition FileWriter.hpp:27
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
Data Logger for PosVelAtt observations.
Definition MatrixLogger.hpp:26
void deinitialize() override
Deinitialize the node.
MatrixLogger()
Default constructor.
MatrixLogger & operator=(MatrixLogger &&)=delete
Move assignment operator.
json save() const override
Saves the node into a json object.
~MatrixLogger() override
Destructor.
void writeMatrix(const InsTime &insTime, size_t pinIdx)
Write a matrix to the file.
static std::string typeStatic()
String representation of the Class Type.
MatrixLogger(MatrixLogger &&)=delete
Move constructor.
bool _headerWritten
Flag whether the header was written.
Definition MatrixLogger.hpp:79
void flush() override
Function called by the flow executer after finishing to flush out remaining data.
static constexpr size_t INPUT_PORT_INDEX_MATRIX
Matrix.
Definition MatrixLogger.hpp:65
MatrixLogger(const MatrixLogger &)=delete
Copy constructor.
void restore(const json &j) override
Restores the node from a json object.
std::string type() const override
String representation of the Class Type.
void guiConfig() override
ImGui config window which is shown on double click.
MatrixLogger & operator=(const MatrixLogger &)=delete
Copy assignment operator.
bool initialize() override
Initialize the node.
static std::string category()
String representation of the Class Category.
Abstract parent class for all nodes.
Definition Node.hpp:86