Skip to content
Snippets Groups Projects
Commit edd4a13f authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Remove data_ as member of ProcessorMotion

parent fde7de68
No related branches found
No related tags found
1 merge request!317Motion cleanup
......@@ -466,7 +466,6 @@ class ProcessorMotion : public ProcessorBase
// helpers to avoid allocation
Scalar dt_; ///< Time step
Eigen::VectorXs x_; ///< current state
Eigen::VectorXs data_; ///< current data
Eigen::VectorXs delta_; ///< current delta
Eigen::MatrixXs delta_cov_; ///< current delta covariance
Eigen::VectorXs delta_integrated_; ///< integrated delta
......
......@@ -21,7 +21,6 @@ ProcessorMotion::ProcessorMotion(const std::string& _type,
last_ptr_(),
incoming_ptr_(),
dt_(0.0), x_(_state_size),
data_(_data_size),
delta_(_delta_size),
delta_cov_(_delta_cov_size, _delta_cov_size),
delta_integrated_(_delta_size),
......
......@@ -46,10 +46,6 @@ class ProcessorOdom3DTest : public ProcessorOdom3D
ProcessorOdom3DTest();
// getters :-D !!
VectorXs& delta() {return delta_;}
VectorXs& deltaInt() {return delta_integrated_;}
MatrixXs& deltaCov() {return delta_cov_;}
MatrixXs& deltaIntCov() {return delta_integrated_cov_;}
Scalar& kdd() {return k_disp_to_disp_;}
Scalar& kdr() {return k_disp_to_rot_;}
Scalar& krr() {return k_rot_to_rot_;}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment