meggert
0aa09bd516
Some checks failed
EIVE/eive-obsw/pipeline/pr-main There was a failure building this commit
27 lines
781 B
C++
27 lines
781 B
C++
#ifndef MISSION_CONTROLLER_ACS_ATTITUDEESTIMATION_H_
|
|
#define MISSION_CONTROLLER_ACS_ATTITUDEESTIMATION_H_
|
|
|
|
#include <fsfw/globalfunctions/math/QuaternionOperations.h>
|
|
#include <fsfw/globalfunctions/math/VectorOperations.h>
|
|
#include <mission/controller/acs/AcsParameters.h>
|
|
#include <mission/controller/controllerdefinitions/AcsCtrlDefinitions.h>
|
|
|
|
#include <cmath>
|
|
#include <iostream>
|
|
|
|
class AttitudeEstimation {
|
|
public:
|
|
AttitudeEstimation(AcsParameters *acsParameters_);
|
|
virtual ~AttitudeEstimation();
|
|
;
|
|
|
|
void quest(acsctrl::SusDataProcessed *susData, acsctrl::MgmDataProcessed *mgmData,
|
|
acsctrl::AttitudeEstimationData *attitudeEstimation);
|
|
|
|
protected:
|
|
private:
|
|
AcsParameters *acsParameters;
|
|
};
|
|
|
|
#endif /* MISSION_CONTROLLER_ACS_ATTITUDEESTIMATION_H_ */
|