45 [[nodiscard]] std::string
type()
const override;
65 constexpr static size_t INPUT_PORT_INDEX_MATRIX = 0;
68 bool initialize()
override;
71 void deinitialize()
override;
76 void writeMatrix(
const InsTime& insTime,
size_t pinIdx);
79 bool _headerWritten =
false;
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:26
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:667
Data Logger for PosVelAtt observations.
Definition MatrixLogger.hpp:26
MatrixLogger()
Default constructor.
MatrixLogger & operator=(MatrixLogger &&)=delete
Move assignment operator.
json save() const override
Saves the node into a json object.
~MatrixLogger() override
Destructor.
static std::string typeStatic()
String representation of the Class Type.
MatrixLogger(MatrixLogger &&)=delete
Move constructor.
void flush() override
Function called by the flow executer after finishing to flush out remaining data.
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.
static std::string category()
String representation of the Class Category.
Abstract parent class for all nodes.
Definition Node.hpp:86