- 3.0.2 models module.
HyQUrdfNames.h
Go to the documentation of this file.
1 /**********************************************************************************************************************
2 This file is part of the Control Toolbox (https://github.com/ethz-adrl/control-toolbox), copyright by ETH Zurich.
3 Licensed under the BSD-2 license (see LICENSE file in main directory)
4 **********************************************************************************************************************/
5 
6 #pragma once
7 
8 #pragma GCC diagnostic push
9 #pragma GCC diagnostic ignored "-Wunused-function"
10 
11 namespace ct {
12 namespace models {
13 namespace HyQ {
14 
15 static std::vector<std::string> urdfJointNames()
16 {
17  std::vector<std::string> urdfJointNames = {"lf_haa_joint", "lf_hfe_joint", "lf_kfe_joint", "rf_haa_joint",
18  "rf_hfe_joint", "rf_kfe_joint", "lh_haa_joint", "lh_hfe_joint", "lh_kfe_joint", "rh_haa_joint", "rh_hfe_joint",
19  "rh_kfe_joint"};
20 
21  return urdfJointNames;
22 }
23 
24 } // namespace HyQ
25 } // namespace models
26 } // namespace ct
27 
28 #pragma GCC diagnostic pop
const std::vector< std::string > & urdfJointNames()
Definition: DoubleInvertedPendulumUrdfNames.h:12