Class package_template::File_configuration¶
-
class File_configuration : public package_template::Gains_configuration¶
Reading configuration from yaml file.
Public Functions
-
File_configuration(std::string yaml_file)¶
Returns error encountered when reading configuration.
See also
- Parameters:
yaml_file – absolute path to configuration yaml file. The file is expected to have parameters “kp”, “kd” and “ki”
-
virtual double get_kp() const¶
Get the proportional gain.
- Returns:
double
-
virtual double get_kd() const¶
Get the derivative gain.
- Returns:
double
-
virtual double get_ki() const¶
Get the integral gain.
- Returns:
double
-
virtual bool has_error() const¶
Enquire if an error was encountered while reading the configuration.
See also
- Returns:
true if an error has been encountered
- Returns:
false otherwise
-
virtual std::string get_error() const¶
returns error encountered when reading configuration
See also
-
File_configuration(std::string yaml_file)¶