CartImpTrajectory.h
Go to the documentation of this file.
00001 /* Auto-generated by genmsg_cpp for file /home/rosbuild/hudson/workspace/doc-fuerte-RCPRG/doc_stacks/2013-11-14_11-44-42.201614/lwr_robot/lwr_impedance_controller/msg/CartImpTrajectory.msg */
00002 #ifndef LWR_IMPEDANCE_CONTROLLER_MESSAGE_CARTIMPTRAJECTORY_H
00003 #define LWR_IMPEDANCE_CONTROLLER_MESSAGE_CARTIMPTRAJECTORY_H
00004 #include <string>
00005 #include <vector>
00006 #include <map>
00007 #include <ostream>
00008 #include "ros/serialization.h"
00009 #include "ros/builtin_message_traits.h"
00010 #include "ros/message_operations.h"
00011 #include "ros/time.h"
00012 
00013 #include "ros/macros.h"
00014 
00015 #include "ros/assert.h"
00016 
00017 #include "std_msgs/Header.h"
00018 #include "geometry_msgs/Pose.h"
00019 #include "lwr_impedance_controller/CartImpTrajectoryPoint.h"
00020 
00021 namespace lwr_impedance_controller
00022 {
00023 template <class ContainerAllocator>
00024 struct CartImpTrajectory_ {
00025   typedef CartImpTrajectory_<ContainerAllocator> Type;
00026 
00027   CartImpTrajectory_()
00028   : header()
00029   , force_tool()
00030   , trajectory()
00031   {
00032   }
00033 
00034   CartImpTrajectory_(const ContainerAllocator& _alloc)
00035   : header(_alloc)
00036   , force_tool(_alloc)
00037   , trajectory(_alloc)
00038   {
00039   }
00040 
00041   typedef  ::std_msgs::Header_<ContainerAllocator>  _header_type;
00042    ::std_msgs::Header_<ContainerAllocator>  header;
00043 
00044   typedef  ::geometry_msgs::Pose_<ContainerAllocator>  _force_tool_type;
00045    ::geometry_msgs::Pose_<ContainerAllocator>  force_tool;
00046 
00047   typedef std::vector< ::lwr_impedance_controller::CartImpTrajectoryPoint_<ContainerAllocator> , typename ContainerAllocator::template rebind< ::lwr_impedance_controller::CartImpTrajectoryPoint_<ContainerAllocator> >::other >  _trajectory_type;
00048   std::vector< ::lwr_impedance_controller::CartImpTrajectoryPoint_<ContainerAllocator> , typename ContainerAllocator::template rebind< ::lwr_impedance_controller::CartImpTrajectoryPoint_<ContainerAllocator> >::other >  trajectory;
00049 
00050 
00051   typedef boost::shared_ptr< ::lwr_impedance_controller::CartImpTrajectory_<ContainerAllocator> > Ptr;
00052   typedef boost::shared_ptr< ::lwr_impedance_controller::CartImpTrajectory_<ContainerAllocator>  const> ConstPtr;
00053   boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00054 }; // struct CartImpTrajectory
00055 typedef  ::lwr_impedance_controller::CartImpTrajectory_<std::allocator<void> > CartImpTrajectory;
00056 
00057 typedef boost::shared_ptr< ::lwr_impedance_controller::CartImpTrajectory> CartImpTrajectoryPtr;
00058 typedef boost::shared_ptr< ::lwr_impedance_controller::CartImpTrajectory const> CartImpTrajectoryConstPtr;
00059 
00060 
00061 template<typename ContainerAllocator>
00062 std::ostream& operator<<(std::ostream& s, const  ::lwr_impedance_controller::CartImpTrajectory_<ContainerAllocator> & v)
00063 {
00064   ros::message_operations::Printer< ::lwr_impedance_controller::CartImpTrajectory_<ContainerAllocator> >::stream(s, "", v);
00065   return s;}
00066 
00067 } // namespace lwr_impedance_controller
00068 
00069 namespace ros
00070 {
00071 namespace message_traits
00072 {
00073 template<class ContainerAllocator> struct IsMessage< ::lwr_impedance_controller::CartImpTrajectory_<ContainerAllocator> > : public TrueType {};
00074 template<class ContainerAllocator> struct IsMessage< ::lwr_impedance_controller::CartImpTrajectory_<ContainerAllocator>  const> : public TrueType {};
00075 template<class ContainerAllocator>
00076 struct MD5Sum< ::lwr_impedance_controller::CartImpTrajectory_<ContainerAllocator> > {
00077   static const char* value() 
00078   {
00079     return "d16d5667e567d51697c8ecf375bc347b";
00080   }
00081 
00082   static const char* value(const  ::lwr_impedance_controller::CartImpTrajectory_<ContainerAllocator> &) { return value(); } 
00083   static const uint64_t static_value1 = 0xd16d5667e567d516ULL;
00084   static const uint64_t static_value2 = 0x97c8ecf375bc347bULL;
00085 };
00086 
00087 template<class ContainerAllocator>
00088 struct DataType< ::lwr_impedance_controller::CartImpTrajectory_<ContainerAllocator> > {
00089   static const char* value() 
00090   {
00091     return "lwr_impedance_controller/CartImpTrajectory";
00092   }
00093 
00094   static const char* value(const  ::lwr_impedance_controller::CartImpTrajectory_<ContainerAllocator> &) { return value(); } 
00095 };
00096 
00097 template<class ContainerAllocator>
00098 struct Definition< ::lwr_impedance_controller::CartImpTrajectory_<ContainerAllocator> > {
00099   static const char* value() 
00100   {
00101     return "Header header\n\
00102 geometry_msgs/Pose force_tool\n\
00103 lwr_impedance_controller/CartImpTrajectoryPoint[] trajectory\n\
00104 \n\
00105 ================================================================================\n\
00106 MSG: std_msgs/Header\n\
00107 # Standard metadata for higher-level stamped data types.\n\
00108 # This is generally used to communicate timestamped data \n\
00109 # in a particular coordinate frame.\n\
00110 # \n\
00111 # sequence ID: consecutively increasing ID \n\
00112 uint32 seq\n\
00113 #Two-integer timestamp that is expressed as:\n\
00114 # * stamp.secs: seconds (stamp_secs) since epoch\n\
00115 # * stamp.nsecs: nanoseconds since stamp_secs\n\
00116 # time-handling sugar is provided by the client library\n\
00117 time stamp\n\
00118 #Frame this data is associated with\n\
00119 # 0: no frame\n\
00120 # 1: global frame\n\
00121 string frame_id\n\
00122 \n\
00123 ================================================================================\n\
00124 MSG: geometry_msgs/Pose\n\
00125 # A representation of pose in free space, composed of postion and orientation. \n\
00126 Point position\n\
00127 Quaternion orientation\n\
00128 \n\
00129 ================================================================================\n\
00130 MSG: geometry_msgs/Point\n\
00131 # This contains the position of a point in free space\n\
00132 float64 x\n\
00133 float64 y\n\
00134 float64 z\n\
00135 \n\
00136 ================================================================================\n\
00137 MSG: geometry_msgs/Quaternion\n\
00138 # This represents an orientation in free space in quaternion form.\n\
00139 \n\
00140 float64 x\n\
00141 float64 y\n\
00142 float64 z\n\
00143 float64 w\n\
00144 \n\
00145 ================================================================================\n\
00146 MSG: lwr_impedance_controller/CartImpTrajectoryPoint\n\
00147 geometry_msgs/Pose pose\n\
00148 lwr_impedance_controller/CartesianImpedance impedance\n\
00149 geometry_msgs/Wrench wrench\n\
00150 geometry_msgs/Twist velocity\n\
00151 duration time_from_start\n\
00152 \n\
00153 ================================================================================\n\
00154 MSG: lwr_impedance_controller/CartesianImpedance\n\
00155 geometry_msgs/Wrench stiffness\n\
00156 geometry_msgs/Wrench damping\n\
00157 \n\
00158 ================================================================================\n\
00159 MSG: geometry_msgs/Wrench\n\
00160 # This represents force in free space, seperated into \n\
00161 # it's linear and angular parts.  \n\
00162 Vector3  force\n\
00163 Vector3  torque\n\
00164 \n\
00165 ================================================================================\n\
00166 MSG: geometry_msgs/Vector3\n\
00167 # This represents a vector in free space. \n\
00168 \n\
00169 float64 x\n\
00170 float64 y\n\
00171 float64 z\n\
00172 ================================================================================\n\
00173 MSG: geometry_msgs/Twist\n\
00174 # This expresses velocity in free space broken into it's linear and angular parts. \n\
00175 Vector3  linear\n\
00176 Vector3  angular\n\
00177 \n\
00178 ";
00179   }
00180 
00181   static const char* value(const  ::lwr_impedance_controller::CartImpTrajectory_<ContainerAllocator> &) { return value(); } 
00182 };
00183 
00184 template<class ContainerAllocator> struct HasHeader< ::lwr_impedance_controller::CartImpTrajectory_<ContainerAllocator> > : public TrueType {};
00185 template<class ContainerAllocator> struct HasHeader< const ::lwr_impedance_controller::CartImpTrajectory_<ContainerAllocator> > : public TrueType {};
00186 } // namespace message_traits
00187 } // namespace ros
00188 
00189 namespace ros
00190 {
00191 namespace serialization
00192 {
00193 
00194 template<class ContainerAllocator> struct Serializer< ::lwr_impedance_controller::CartImpTrajectory_<ContainerAllocator> >
00195 {
00196   template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00197   {
00198     stream.next(m.header);
00199     stream.next(m.force_tool);
00200     stream.next(m.trajectory);
00201   }
00202 
00203   ROS_DECLARE_ALLINONE_SERIALIZER;
00204 }; // struct CartImpTrajectory_
00205 } // namespace serialization
00206 } // namespace ros
00207 
00208 namespace ros
00209 {
00210 namespace message_operations
00211 {
00212 
00213 template<class ContainerAllocator>
00214 struct Printer< ::lwr_impedance_controller::CartImpTrajectory_<ContainerAllocator> >
00215 {
00216   template<typename Stream> static void stream(Stream& s, const std::string& indent, const  ::lwr_impedance_controller::CartImpTrajectory_<ContainerAllocator> & v) 
00217   {
00218     s << indent << "header: ";
00219 s << std::endl;
00220     Printer< ::std_msgs::Header_<ContainerAllocator> >::stream(s, indent + "  ", v.header);
00221     s << indent << "force_tool: ";
00222 s << std::endl;
00223     Printer< ::geometry_msgs::Pose_<ContainerAllocator> >::stream(s, indent + "  ", v.force_tool);
00224     s << indent << "trajectory[]" << std::endl;
00225     for (size_t i = 0; i < v.trajectory.size(); ++i)
00226     {
00227       s << indent << "  trajectory[" << i << "]: ";
00228       s << std::endl;
00229       s << indent;
00230       Printer< ::lwr_impedance_controller::CartImpTrajectoryPoint_<ContainerAllocator> >::stream(s, indent + "    ", v.trajectory[i]);
00231     }
00232   }
00233 };
00234 
00235 
00236 } // namespace message_operations
00237 } // namespace ros
00238 
00239 #endif // LWR_IMPEDANCE_CONTROLLER_MESSAGE_CARTIMPTRAJECTORY_H
00240 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Properties Friends


lwr_impedance_controller
Author(s): Konrad Banachowicz
autogenerated on Thu Nov 14 2013 11:56:13