Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #ifndef MBF_ABSTRACT_NAV__ROBOT_INFORMATION_H_
00040 #define MBF_ABSTRACT_NAV__ROBOT_INFORMATION_H_
00041
00042 #include <boost/shared_ptr.hpp>
00043 #include <geometry_msgs/PoseStamped.h>
00044 #include <geometry_msgs/TwistStamped.h>
00045 #include <ros/duration.h>
00046 #include <string>
00047 #include <tf/transform_listener.h>
00048
00049 #include <mbf_utility/types.h>
00050
00051 namespace mbf_abstract_nav{
00052
00053 class RobotInformation{
00054
00055 public:
00056
00057 typedef boost::shared_ptr<RobotInformation> Ptr;
00058
00059 RobotInformation(
00060 TF &tf_listener,
00061 const std::string &global_frame,
00062 const std::string &robot_frame,
00063 const ros::Duration &tf_timeout);
00064
00065 bool getRobotPose(geometry_msgs::PoseStamped &robot_pose) const;
00066
00067 bool getRobotVelocity(geometry_msgs::TwistStamped &robot_velocity, ros::Duration look_back_duration) const;
00068
00069 const std::string& getGlobalFrame() const;
00070
00071 const std::string& getRobotFrame() const;
00072
00073 const TF& getTransformListener() const;
00074
00075 const ros::Duration& getTfTimeout() const;
00076
00077 private:
00078 const TF& tf_listener_;
00079
00080 const std::string &global_frame_;
00081
00082 const std::string &robot_frame_;
00083
00084 const ros::Duration &tf_timeout_;
00085
00086 };
00087
00088 }
00089 #endif //MBF_ABSTRACT_NAV__ROBOT_INFORMATION_H_