configuration.hpp
Go to the documentation of this file.
1 #ifndef __PREVIEW_IK_CONFIGURATION___
2 #define __PREVIEW_IK_CONFIGURATION___
3 #include <iostream>
4 
5 // clang-format off
6 #include "pinocchio/fwd.hpp"
7 // clang-format on
8 
9 namespace conf {
10 const std::string path_to_robots(EXAMPLE_ROBOT_DATA_MODEL_DIR);
11 const std::string urdf_path =
12  path_to_robots + "/talos_data/robots/talos_reduced_corrected.urdf";
13 const std::string srdf_path = path_to_robots + "/talos_data/srdf/talos.srdf";
14 
15 const std::string leftHipJointName = "leg_left_1_joint";
16 const std::string rightHipJointName = "leg_right_1_joint";
17 const std::string leftKneeJointName = "leg_left_4_joint";
18 const std::string rightKneeJointName = "leg_right_4_joint";
19 const std::string leftAnkleJointName = "leg_left_5_joint";
20 const std::string rightAnkleJointName = "leg_right_5_joint";
21 const std::string leftFootFrameName = "leg_left_sole_fix_joint";
22 const std::string rightFootFrameName = "leg_right_sole_fix_joint";
23 
24 } // namespace conf
25 
26 #endif // __PREVIEW_IK_CONFIGURATION
conf::rightHipJointName
const std::string rightHipJointName
Definition: configuration.hpp:16
conf::leftAnkleJointName
const std::string leftAnkleJointName
Definition: configuration.hpp:19
conf::rightKneeJointName
const std::string rightKneeJointName
Definition: configuration.hpp:18
conf::urdf_path
const std::string urdf_path
Definition: configuration.hpp:11
conf::path_to_robots
const std::string path_to_robots(EXAMPLE_ROBOT_DATA_MODEL_DIR)
conf::leftHipJointName
const std::string leftHipJointName
Definition: configuration.hpp:15
conf::leftKneeJointName
const std::string leftKneeJointName
Definition: configuration.hpp:17
conf::rightFootFrameName
const std::string rightFootFrameName
Definition: configuration.hpp:22
conf::leftFootFrameName
const std::string leftFootFrameName
Definition: configuration.hpp:21
conf::srdf_path
const std::string srdf_path
Definition: configuration.hpp:13
conf
Definition: configuration.hpp:9
conf::rightAnkleJointName
const std::string rightAnkleJointName
Definition: configuration.hpp:20