#include <movement_publisher.hpp>
Definition at line 42 of file movement_publisher.hpp.
shadowrobot::MovementPublisher::MovementPublisher | ( | std::string | joint_name, |
double | rate = 100.0 , |
||
unsigned int | repetition = 1 , |
||
unsigned int | nb_mvt_step = 1000 , |
||
std::string | controller_type = "" , |
||
bool | testing = false , |
||
HandCommander * | hand_commander = NULL |
||
) |
This is the constructor used when providing a joint name. It automatically extracts the min and max + subscriber / publishers from the HandCommander.
joint_name | the name of the joint we want to move. |
rate | rate at which the targets should be published. |
repetition | number of times the movement should be repeated |
nb_mvt_step | number of steps we take in the image |
controller_type | the type of controller ("sr" or "pr2") |
testing | set to true when running a gazebo test (just adds a long sleep). |
hand_commander | helper for controlling the shadow hand |
Definition at line 33 of file movement_publisher.cpp.
shadowrobot::MovementPublisher::MovementPublisher | ( | double | min_value = 0.0 , |
double | max_value = 1.5 , |
||
double | rate = 100.0 , |
||
unsigned int | repetition = 1 , |
||
unsigned int | nb_mvt_step = 1000 , |
||
std::string | controller_type = "" |
||
) |
Definition at line 64 of file movement_publisher.cpp.
shadowrobot::MovementPublisher::~MovementPublisher | ( | ) | [virtual] |
Definition at line 97 of file movement_publisher.cpp.
Definition at line 214 of file movement_publisher.cpp.
void shadowrobot::MovementPublisher::calculateErrorCallback | ( | const sr_robot_msgs::JointControllerState::ConstPtr & | msg | ) |
Used to listen to a sr_robot_msgs::JointControllerState and calculate the mean square error of every movement repetition
msg | the current state of the controller. |
Definition at line 150 of file movement_publisher.cpp.
void shadowrobot::MovementPublisher::execute_step | ( | int | index_mvt_step, |
int | index_partial_movement | ||
) |
Allows the user to control the movement step by step.
Definition at line 174 of file movement_publisher.cpp.
std::string shadowrobot::MovementPublisher::get_subscriber_topic | ( | ) |
Definition at line 229 of file movement_publisher.cpp.
void shadowrobot::MovementPublisher::pr2_calculateErrorCallback | ( | const pr2_controllers_msgs::JointControllerState::ConstPtr & | msg | ) |
Used to listen to a pr2_controller_msgs::JointControllerState and calculate the mean square error of every movement repetition
msg | the current state of the controller. |
Definition at line 162 of file movement_publisher.cpp.
void shadowrobot::MovementPublisher::publish_ | ( | ) | [protected] |
Publishes the message, using either the HandCommander (recommended) or the previous approach, using directly a remapped publisher.
Definition at line 196 of file movement_publisher.cpp.
void shadowrobot::MovementPublisher::set_publisher | ( | ros::Publisher | publisher | ) |
Definition at line 219 of file movement_publisher.cpp.
void shadowrobot::MovementPublisher::set_subscriber | ( | ros::Subscriber | subscriber | ) |
Definition at line 224 of file movement_publisher.cpp.
Definition at line 100 of file movement_publisher.cpp.
void shadowrobot::MovementPublisher::stop | ( | void | ) |
Definition at line 211 of file movement_publisher.cpp.
void shadowrobot::MovementPublisher::subscribe_and_default_pub_ | ( | std::string | input | ) | [protected] |
Subscribes with the correct type (based on controller_type_) to the given topic. Also initialises the MSE publisher.
input | Topic to which we're subscribing. |
Definition at line 76 of file movement_publisher.cpp.
std::string shadowrobot::MovementPublisher::controller_type [protected] |
Definition at line 139 of file movement_publisher.hpp.
boost::shared_ptr<HandCommander> shadowrobot::MovementPublisher::hand_commander_ [protected] |
Definition at line 118 of file movement_publisher.hpp.
std::string shadowrobot::MovementPublisher::joint_name_ [protected] |
Definition at line 119 of file movement_publisher.hpp.
std::vector<sr_robot_msgs::joint> shadowrobot::MovementPublisher::joint_vector_ [protected] |
Definition at line 132 of file movement_publisher.hpp.
double shadowrobot::MovementPublisher::last_target_ [protected] |
Definition at line 133 of file movement_publisher.hpp.
double shadowrobot::MovementPublisher::max [protected] |
Definition at line 129 of file movement_publisher.hpp.
double shadowrobot::MovementPublisher::min [protected] |
Definition at line 129 of file movement_publisher.hpp.
double shadowrobot::MovementPublisher::MSError_ [protected] |
Definition at line 137 of file movement_publisher.hpp.
std_msgs::Float64 shadowrobot::MovementPublisher::msg [protected] |
Definition at line 131 of file movement_publisher.hpp.
unsigned int shadowrobot::MovementPublisher::n_samples_ [protected] |
Definition at line 138 of file movement_publisher.hpp.
unsigned int shadowrobot::MovementPublisher::nb_mvt_step [protected] |
Definition at line 135 of file movement_publisher.hpp.
Definition at line 122 of file movement_publisher.hpp.
std::vector<PartialMovement> shadowrobot::MovementPublisher::partial_movements [protected] |
Definition at line 121 of file movement_publisher.hpp.
ros::Publisher shadowrobot::MovementPublisher::pub [protected] |
Definition at line 123 of file movement_publisher.hpp.
Definition at line 124 of file movement_publisher.hpp.
Definition at line 127 of file movement_publisher.hpp.
unsigned int shadowrobot::MovementPublisher::repetition [protected] |
Definition at line 128 of file movement_publisher.hpp.
double shadowrobot::MovementPublisher::SError_ [protected] |
Definition at line 136 of file movement_publisher.hpp.
ros::Subscriber shadowrobot::MovementPublisher::sub_ [protected] |
Definition at line 125 of file movement_publisher.hpp.