00001 // Copyright (C) 2010-2011 Institut de Robotica i Informatica Industrial, CSIC-UPC. 00002 // Author 00003 // All rights reserved. 00004 // 00005 // This file is part of iri-ros-pkg 00006 // iri-ros-pkg is free software: you can redistribute it and/or modify 00007 // it under the terms of the GNU Lesser General Public License as published by 00008 // the Free Software Foundation, either version 3 of the License, or 00009 // at your option) any later version. 00010 // 00011 // This program is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 // GNU Lesser General Public License for more details. 00015 // 00016 // You should have received a copy of the GNU Lesser General Public License 00017 // along with this program. If not, see <http://www.gnu.org/licenses/>. 00018 // 00019 // IMPORTANT NOTE: This code has been generated through a script from the 00020 // iri_ros_scripts. Please do NOT delete any comments to guarantee the correctness 00021 // of the scripts. ROS topics can be easly add by using those scripts. Please 00022 // refer to the IRI wiki page for more information: 00023 // http://wikiri.upc.es/index.php/Robotics_Lab 00024 00025 #ifndef _darwin_odom_alg_node_h_ 00026 #define _darwin_odom_alg_node_h_ 00027 00028 #include <iri_base_algorithm/iri_base_algorithm.h> 00029 #include "darwin_odom_alg.h" 00030 00031 #include <geometry_msgs/PoseWithCovariance.h> 00032 #include <geometry_msgs/TwistWithCovariance.h> 00033 #include <geometry_msgs/Transform.h> 00034 00035 #include <tf/transform_broadcaster.h> 00036 00037 // [publisher subscriber headers] 00038 #include <sensor_msgs/Imu.h> 00039 #include <nav_msgs/Odometry.h> 00040 00041 // [service client headers] 00042 00043 // [action server client headers] 00044 00049 class DarwinOdomAlgNode : public algorithm_base::IriBaseAlgorithm<DarwinOdomAlgorithm> 00050 { 00051 private: 00052 // [publisher attributes] 00053 ros::Publisher odom_publisher_; 00054 nav_msgs::Odometry Odometry_msg_; 00055 00056 // [subscriber attributes] 00057 ros::Subscriber darwin_imu_subscriber_; 00058 void darwin_imu_callback(const sensor_msgs::Imu::ConstPtr& msg); 00059 sensor_msgs::Imu status; 00060 CMutex darwin_imu_mutex_; 00061 00062 // [service attributes] 00063 00064 // [client attributes] 00065 00066 // [action server attributes] 00067 00068 // [action client attributes] 00069 00070 // odometry variables 00071 geometry_msgs::PoseWithCovariance pose_; 00072 geometry_msgs::TwistWithCovariance twist_; 00073 geometry_msgs::Transform transform_; 00074 00075 // parameter variables 00076 std::string tf_prefix_; 00077 std::string odom_id_; 00078 std::string base_link_id_; 00079 bool publish_tf_; 00080 00081 public: 00088 DarwinOdomAlgNode(void); 00089 00096 ~DarwinOdomAlgNode(void); 00097 00098 protected: 00099 tf::TransformBroadcaster odom_broadcaster_; 00112 void mainNodeThread(void); 00113 00126 void node_config_update(Config &config, uint32_t level); 00127 00134 void addNodeDiagnostics(void); 00135 00136 // [diagnostic functions] 00137 00138 // [test functions] 00139 }; 00140 00141 #endif