sot-core
4.11.8
Hierarchical task solver plug-in for dynamic-graph.
|
Go to the documentation of this file.
10 #ifndef __SOT_FEATURE_GENERIC_HH__
11 #define __SOT_FEATURE_GENERIC_HH__
26 #if defined(feature_generic_EXPORTS)
27 #define SOTFEATUREGENERIC_EXPORT __declspec(dllexport)
29 #define SOTFEATUREGENERIC_EXPORT __declspec(dllimport)
32 #define SOTFEATUREGENERIC_EXPORT
63 virtual const std::string &
getClassName(
void)
const {
return CLASS_NAME; }
77 dynamicgraph::SignalPtr<dynamicgraph::Vector, int>
errorSIN;
80 dynamicgraph::SignalPtr<dynamicgraph::Matrix, int>
jacobianSIN;
103 virtual unsigned int &getDimension(
unsigned int &dim,
int time);
111 virtual dynamicgraph::Vector &computeError(dynamicgraph::Vector &res,
115 virtual dynamicgraph::Matrix &computeJacobian(dynamicgraph::Matrix &res,
121 virtual void display(std::ostream &os)
const;
133 #endif // #ifndef __SOT_FEATURE_GENERIC_HH__
dynamicgraph::SignalPtr< dynamicgraph::Matrix, int > jacobianSIN
Input for the Jacobian.
Definition: feature-generic.hh:80
SignalTimeDependent< dynamicgraph::Matrix, int > jacobianSOUT
Jacobian of the error wrt the robot state: .
Definition: feature-abstract.hh:193
SignalTimeDependent< dynamicgraph::Vector, int > errorSOUT
This signal returns the error between the desired value and the current value : .
Definition: feature-abstract.hh:185
Definition: feature-abstract.hh:229
Definition: abstract-sot-external-interface.hh:17
virtual const std::string & getClassName(void) const
Definition: feature-generic.hh:63
#define SOTFEATUREGENERIC_EXPORT
Definition: feature-generic.hh:32
Eigen::VectorXd::Index Index
Definition: robot-utils.hh:39
#define DECLARE_REFERENCE_FUNCTIONS(FeatureSpecialized)
Definition: feature-abstract.hh:251
Class that defines a generic implementation of the abstract interface for features.
Definition: feature-generic.hh:56
static const std::string CLASS_NAME
Definition: feature-generic.hh:61
This class gives the abstract definition of a feature.
Definition: feature-abstract.hh:76
dynamicgraph::SignalPtr< dynamicgraph::Vector, int > errorSIN
Input for the error.
Definition: feature-generic.hh:77
dynamicgraph::Vector::Index dimensionDefault
Definition: feature-generic.hh:66
virtual ~FeatureGeneric(void)
Default destructor.
Definition: feature-generic.hh:100