43 [[nodiscard]] std::string
type()
const override;
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Inertial Measurement Integrator.
Numerically integrates Imu data.
Definition ImuIntegrator.hpp:24
static constexpr size_t INPUT_PORT_INDEX_POS_VEL_ATT_INIT
Flow (PosVelAtt)
Definition ImuIntegrator.hpp:62
void deinitialize() override
Deinitialize the node.
ImuIntegrator(const ImuIntegrator &)=delete
Copy constructor.
void recvObservation(InputPin::NodeDataQueue &queue, size_t pinIdx)
Receive Function.
bool _preferAccelerationOverDeltaMeasurements
Prefer the raw acceleration measurements over the deltaVel & deltaTheta values.
Definition ImuIntegrator.hpp:84
void restore(const json &j) override
Restores the node from a json object.
std::string type() const override
String representation of the Class Type.
static std::string category()
String representation of the Class Category.
ImuIntegrator()
Default constructor.
void guiConfig() override
ImGui config window which is shown on double click.
bool initialize() override
Initialize the node.
ImuIntegrator & operator=(ImuIntegrator &&)=delete
Move assignment operator.
~ImuIntegrator() override
Destructor.
ImuIntegrator(ImuIntegrator &&)=delete
Move constructor.
static constexpr size_t OUTPUT_PORT_INDEX_INERTIAL_NAV_SOL
Flow (InertialNavSol)
Definition ImuIntegrator.hpp:60
void recvPosVelAttInit(InputPin::NodeDataQueue &queue, size_t pinIdx)
Receive Function for the PosVelAtt initial values.
json save() const override
Saves the node into a json object.
InertialIntegrator _inertialIntegrator
Inertial Integrator.
Definition ImuIntegrator.hpp:81
static std::string typeStatic()
String representation of the Class Type.
ImuIntegrator & operator=(const ImuIntegrator &)=delete
Copy assignment operator.
static constexpr size_t INPUT_PORT_INDEX_IMU_OBS
Flow (ImuObs)
Definition ImuIntegrator.hpp:61
Inertial Measurement Integrator.
Definition InertialIntegrator.hpp:37
Abstract parent class for all nodes.
Definition Node.hpp:86