00001
00002 #ifndef ARM_NAVIGATION_MSGS_MESSAGE_MOVEARMACTIONGOAL_H
00003 #define ARM_NAVIGATION_MSGS_MESSAGE_MOVEARMACTIONGOAL_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 "actionlib_msgs/GoalID.h"
00019 #include "arm_navigation_msgs/MoveArmGoal.h"
00020
00021 namespace arm_navigation_msgs
00022 {
00023 template <class ContainerAllocator>
00024 struct MoveArmActionGoal_ {
00025 typedef MoveArmActionGoal_<ContainerAllocator> Type;
00026
00027 MoveArmActionGoal_()
00028 : header()
00029 , goal_id()
00030 , goal()
00031 {
00032 }
00033
00034 MoveArmActionGoal_(const ContainerAllocator& _alloc)
00035 : header(_alloc)
00036 , goal_id(_alloc)
00037 , goal(_alloc)
00038 {
00039 }
00040
00041 typedef ::std_msgs::Header_<ContainerAllocator> _header_type;
00042 ::std_msgs::Header_<ContainerAllocator> header;
00043
00044 typedef ::actionlib_msgs::GoalID_<ContainerAllocator> _goal_id_type;
00045 ::actionlib_msgs::GoalID_<ContainerAllocator> goal_id;
00046
00047 typedef ::arm_navigation_msgs::MoveArmGoal_<ContainerAllocator> _goal_type;
00048 ::arm_navigation_msgs::MoveArmGoal_<ContainerAllocator> goal;
00049
00050
00051 private:
00052 static const char* __s_getDataType_() { return "arm_navigation_msgs/MoveArmActionGoal"; }
00053 public:
00054 ROS_DEPRECATED static const std::string __s_getDataType() { return __s_getDataType_(); }
00055
00056 ROS_DEPRECATED const std::string __getDataType() const { return __s_getDataType_(); }
00057
00058 private:
00059 static const char* __s_getMD5Sum_() { return "d560cc046d6b5e8bf3f70a960054d6c6"; }
00060 public:
00061 ROS_DEPRECATED static const std::string __s_getMD5Sum() { return __s_getMD5Sum_(); }
00062
00063 ROS_DEPRECATED const std::string __getMD5Sum() const { return __s_getMD5Sum_(); }
00064
00065 private:
00066 static const char* __s_getMessageDefinition_() { return "# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00067 \n\
00068 Header header\n\
00069 actionlib_msgs/GoalID goal_id\n\
00070 MoveArmGoal goal\n\
00071 \n\
00072 ================================================================================\n\
00073 MSG: std_msgs/Header\n\
00074 # Standard metadata for higher-level stamped data types.\n\
00075 # This is generally used to communicate timestamped data \n\
00076 # in a particular coordinate frame.\n\
00077 # \n\
00078 # sequence ID: consecutively increasing ID \n\
00079 uint32 seq\n\
00080 #Two-integer timestamp that is expressed as:\n\
00081 # * stamp.secs: seconds (stamp_secs) since epoch\n\
00082 # * stamp.nsecs: nanoseconds since stamp_secs\n\
00083 # time-handling sugar is provided by the client library\n\
00084 time stamp\n\
00085 #Frame this data is associated with\n\
00086 # 0: no frame\n\
00087 # 1: global frame\n\
00088 string frame_id\n\
00089 \n\
00090 ================================================================================\n\
00091 MSG: actionlib_msgs/GoalID\n\
00092 # The stamp should store the time at which this goal was requested.\n\
00093 # It is used by an action server when it tries to preempt all\n\
00094 # goals that were requested before a certain time\n\
00095 time stamp\n\
00096 \n\
00097 # The id provides a way to associate feedback and\n\
00098 # result message with specific goal requests. The id\n\
00099 # specified must be unique.\n\
00100 string id\n\
00101 \n\
00102 \n\
00103 ================================================================================\n\
00104 MSG: arm_navigation_msgs/MoveArmGoal\n\
00105 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00106 # Service name to call for getting a motion plan\n\
00107 # Move arm will call a service on this service name \n\
00108 # using the MotionPlanRequest specified here\n\
00109 string planner_service_name\n\
00110 \n\
00111 # A planning scene diff\n\
00112 PlanningScene planning_scene_diff\n\
00113 \n\
00114 # A motion planning request\n\
00115 MotionPlanRequest motion_plan_request\n\
00116 \n\
00117 # OPTIONAL: Diff uses ordered collision operations in addition to allowed_collision_matrix\n\
00118 arm_navigation_msgs/OrderedCollisionOperations operations\n\
00119 \n\
00120 # OPTIONAL flag\n\
00121 # Setting this flag to true will allow move_arm to accept plans that do not go all the way to the goal\n\
00122 bool accept_partial_plans\n\
00123 \n\
00124 # OPTIONAL flag\n\
00125 # Setting this flag to true will allow move_arm to accept invalid goals\n\
00126 # This is useful if you are using a planner like CHOMP along with a noisy rapidly changing collision map\n\
00127 # and you would like to plan to a goal near an object.\n\
00128 bool accept_invalid_goals\n\
00129 \n\
00130 # OPTIONAL flag\n\
00131 # Setting this flag to true will disable the call to IK for a pose goal\n\
00132 bool disable_ik\n\
00133 \n\
00134 # OPTIONAL flag\n\
00135 # Setting this flag to true will disable collision monitoring during execution of a trajectory\n\
00136 bool disable_collision_monitoring\n\
00137 \n\
00138 ================================================================================\n\
00139 MSG: arm_navigation_msgs/PlanningScene\n\
00140 #full robot state\n\
00141 arm_navigation_msgs/RobotState robot_state\n\
00142 \n\
00143 #additional frames for duplicating tf\n\
00144 geometry_msgs/TransformStamped[] fixed_frame_transforms\n\
00145 \n\
00146 #full allowed collision matrix\n\
00147 AllowedCollisionMatrix allowed_collision_matrix\n\
00148 \n\
00149 #allowed contacts\n\
00150 arm_navigation_msgs/AllowedContactSpecification[] allowed_contacts\n\
00151 \n\
00152 #all link paddings\n\
00153 arm_navigation_msgs/LinkPadding[] link_padding\n\
00154 \n\
00155 #collision objects\n\
00156 arm_navigation_msgs/CollisionObject[] collision_objects\n\
00157 arm_navigation_msgs/AttachedCollisionObject[] attached_collision_objects\n\
00158 \n\
00159 #the collision map\n\
00160 arm_navigation_msgs/CollisionMap collision_map\n\
00161 \n\
00162 ================================================================================\n\
00163 MSG: arm_navigation_msgs/RobotState\n\
00164 # This message contains information about the robot state, i.e. the positions of its joints and links\n\
00165 sensor_msgs/JointState joint_state\n\
00166 arm_navigation_msgs/MultiDOFJointState multi_dof_joint_state\n\
00167 \n\
00168 ================================================================================\n\
00169 MSG: sensor_msgs/JointState\n\
00170 # This is a message that holds data to describe the state of a set of torque controlled joints. \n\
00171 #\n\
00172 # The state of each joint (revolute or prismatic) is defined by:\n\
00173 # * the position of the joint (rad or m),\n\
00174 # * the velocity of the joint (rad/s or m/s) and \n\
00175 # * the effort that is applied in the joint (Nm or N).\n\
00176 #\n\
00177 # Each joint is uniquely identified by its name\n\
00178 # The header specifies the time at which the joint states were recorded. All the joint states\n\
00179 # in one message have to be recorded at the same time.\n\
00180 #\n\
00181 # This message consists of a multiple arrays, one for each part of the joint state. \n\
00182 # The goal is to make each of the fields optional. When e.g. your joints have no\n\
00183 # effort associated with them, you can leave the effort array empty. \n\
00184 #\n\
00185 # All arrays in this message should have the same size, or be empty.\n\
00186 # This is the only way to uniquely associate the joint name with the correct\n\
00187 # states.\n\
00188 \n\
00189 \n\
00190 Header header\n\
00191 \n\
00192 string[] name\n\
00193 float64[] position\n\
00194 float64[] velocity\n\
00195 float64[] effort\n\
00196 \n\
00197 ================================================================================\n\
00198 MSG: arm_navigation_msgs/MultiDOFJointState\n\
00199 #A representation of a multi-dof joint state\n\
00200 time stamp\n\
00201 string[] joint_names\n\
00202 string[] frame_ids\n\
00203 string[] child_frame_ids\n\
00204 geometry_msgs/Pose[] poses\n\
00205 \n\
00206 ================================================================================\n\
00207 MSG: geometry_msgs/Pose\n\
00208 # A representation of pose in free space, composed of postion and orientation. \n\
00209 Point position\n\
00210 Quaternion orientation\n\
00211 \n\
00212 ================================================================================\n\
00213 MSG: geometry_msgs/Point\n\
00214 # This contains the position of a point in free space\n\
00215 float64 x\n\
00216 float64 y\n\
00217 float64 z\n\
00218 \n\
00219 ================================================================================\n\
00220 MSG: geometry_msgs/Quaternion\n\
00221 # This represents an orientation in free space in quaternion form.\n\
00222 \n\
00223 float64 x\n\
00224 float64 y\n\
00225 float64 z\n\
00226 float64 w\n\
00227 \n\
00228 ================================================================================\n\
00229 MSG: geometry_msgs/TransformStamped\n\
00230 # This expresses a transform from coordinate frame header.frame_id\n\
00231 # to the coordinate frame child_frame_id\n\
00232 #\n\
00233 # This message is mostly used by the \n\
00234 # <a href=\"http://www.ros.org/wiki/tf\">tf</a> package. \n\
00235 # See it's documentation for more information.\n\
00236 \n\
00237 Header header\n\
00238 string child_frame_id # the frame id of the child frame\n\
00239 Transform transform\n\
00240 \n\
00241 ================================================================================\n\
00242 MSG: geometry_msgs/Transform\n\
00243 # This represents the transform between two coordinate frames in free space.\n\
00244 \n\
00245 Vector3 translation\n\
00246 Quaternion rotation\n\
00247 \n\
00248 ================================================================================\n\
00249 MSG: geometry_msgs/Vector3\n\
00250 # This represents a vector in free space. \n\
00251 \n\
00252 float64 x\n\
00253 float64 y\n\
00254 float64 z\n\
00255 ================================================================================\n\
00256 MSG: arm_navigation_msgs/AllowedCollisionMatrix\n\
00257 # the list of link names in the matrix\n\
00258 string[] link_names\n\
00259 \n\
00260 # the individual entries in the allowed collision matrix\n\
00261 # symmetric, with same order as link_names\n\
00262 AllowedCollisionEntry[] entries\n\
00263 \n\
00264 ================================================================================\n\
00265 MSG: arm_navigation_msgs/AllowedCollisionEntry\n\
00266 # whether or not collision checking is enabled\n\
00267 bool[] enabled\n\
00268 \n\
00269 ================================================================================\n\
00270 MSG: arm_navigation_msgs/AllowedContactSpecification\n\
00271 # The names of the regions\n\
00272 string name\n\
00273 \n\
00274 # The shape of the region in the environment\n\
00275 arm_navigation_msgs/Shape shape\n\
00276 \n\
00277 # The pose of the space defining the region\n\
00278 geometry_msgs/PoseStamped pose_stamped\n\
00279 \n\
00280 # The set of links that will be allowed to have penetration contact within this region\n\
00281 string[] link_names\n\
00282 \n\
00283 # The maximum penetration depth allowed for every link\n\
00284 float64 penetration_depth\n\
00285 \n\
00286 ================================================================================\n\
00287 MSG: arm_navigation_msgs/Shape\n\
00288 byte SPHERE=0\n\
00289 byte BOX=1\n\
00290 byte CYLINDER=2\n\
00291 byte MESH=3\n\
00292 \n\
00293 byte type\n\
00294 \n\
00295 \n\
00296 #### define sphere, box, cylinder ####\n\
00297 # the origin of each shape is considered at the shape's center\n\
00298 \n\
00299 # for sphere\n\
00300 # radius := dimensions[0]\n\
00301 \n\
00302 # for cylinder\n\
00303 # radius := dimensions[0]\n\
00304 # length := dimensions[1]\n\
00305 # the length is along the Z axis\n\
00306 \n\
00307 # for box\n\
00308 # size_x := dimensions[0]\n\
00309 # size_y := dimensions[1]\n\
00310 # size_z := dimensions[2]\n\
00311 float64[] dimensions\n\
00312 \n\
00313 \n\
00314 #### define mesh ####\n\
00315 \n\
00316 # list of triangles; triangle k is defined by tre vertices located\n\
00317 # at indices triangles[3k], triangles[3k+1], triangles[3k+2]\n\
00318 int32[] triangles\n\
00319 geometry_msgs/Point[] vertices\n\
00320 \n\
00321 ================================================================================\n\
00322 MSG: geometry_msgs/PoseStamped\n\
00323 # A Pose with reference coordinate frame and timestamp\n\
00324 Header header\n\
00325 Pose pose\n\
00326 \n\
00327 ================================================================================\n\
00328 MSG: arm_navigation_msgs/LinkPadding\n\
00329 #name for the link\n\
00330 string link_name\n\
00331 \n\
00332 # padding to apply to the link\n\
00333 float64 padding\n\
00334 \n\
00335 ================================================================================\n\
00336 MSG: arm_navigation_msgs/CollisionObject\n\
00337 # a header, used for interpreting the poses\n\
00338 Header header\n\
00339 \n\
00340 # the id of the object\n\
00341 string id\n\
00342 \n\
00343 # The padding used for filtering points near the object.\n\
00344 # This does not affect collision checking for the object. \n\
00345 # Set to negative to get zero padding.\n\
00346 float32 padding\n\
00347 \n\
00348 #This contains what is to be done with the object\n\
00349 CollisionObjectOperation operation\n\
00350 \n\
00351 #the shapes associated with the object\n\
00352 arm_navigation_msgs/Shape[] shapes\n\
00353 \n\
00354 #the poses associated with the shapes - will be transformed using the header\n\
00355 geometry_msgs/Pose[] poses\n\
00356 \n\
00357 ================================================================================\n\
00358 MSG: arm_navigation_msgs/CollisionObjectOperation\n\
00359 #Puts the object into the environment\n\
00360 #or updates the object if already added\n\
00361 byte ADD=0\n\
00362 \n\
00363 #Removes the object from the environment entirely\n\
00364 byte REMOVE=1\n\
00365 \n\
00366 #Only valid within the context of a CollisionAttachedObject message\n\
00367 #Will be ignored if sent with an CollisionObject message\n\
00368 #Takes an attached object, detaches from the attached link\n\
00369 #But adds back in as regular object\n\
00370 byte DETACH_AND_ADD_AS_OBJECT=2\n\
00371 \n\
00372 #Only valid within the context of a CollisionAttachedObject message\n\
00373 #Will be ignored if sent with an CollisionObject message\n\
00374 #Takes current object in the environment and removes it as\n\
00375 #a regular object\n\
00376 byte ATTACH_AND_REMOVE_AS_OBJECT=3\n\
00377 \n\
00378 # Byte code for operation\n\
00379 byte operation\n\
00380 \n\
00381 ================================================================================\n\
00382 MSG: arm_navigation_msgs/AttachedCollisionObject\n\
00383 # The CollisionObject will be attached with a fixed joint to this link\n\
00384 # If link name is set to REMOVE_ALL_ATTACHED_OBJECTS and object.operation \n\
00385 # is set to REMOVE will remove all attached bodies attached to any object\n\
00386 string link_name\n\
00387 \n\
00388 #Reserved for indicating that all attached objects should be removed\n\
00389 string REMOVE_ALL_ATTACHED_OBJECTS = \"all\"\n\
00390 \n\
00391 #This contains the actual shapes and poses for the CollisionObject\n\
00392 #to be attached to the link\n\
00393 #If action is remove and no object.id is set, all objects\n\
00394 #attached to the link indicated by link_name will be removed\n\
00395 CollisionObject object\n\
00396 \n\
00397 # The set of links that the attached objects are allowed to touch\n\
00398 # by default - the link_name is included by default\n\
00399 string[] touch_links\n\
00400 \n\
00401 ================================================================================\n\
00402 MSG: arm_navigation_msgs/CollisionMap\n\
00403 #header for interpreting box positions\n\
00404 Header header\n\
00405 \n\
00406 #boxes for use in collision testing\n\
00407 OrientedBoundingBox[] boxes\n\
00408 \n\
00409 ================================================================================\n\
00410 MSG: arm_navigation_msgs/OrientedBoundingBox\n\
00411 #the center of the box\n\
00412 geometry_msgs/Point32 center\n\
00413 \n\
00414 #the extents of the box, assuming the center is at the point\n\
00415 geometry_msgs/Point32 extents\n\
00416 \n\
00417 #the axis of the box\n\
00418 geometry_msgs/Point32 axis\n\
00419 \n\
00420 #the angle of rotation around the axis\n\
00421 float32 angle\n\
00422 \n\
00423 ================================================================================\n\
00424 MSG: geometry_msgs/Point32\n\
00425 # This contains the position of a point in free space(with 32 bits of precision).\n\
00426 # It is recommeded to use Point wherever possible instead of Point32. \n\
00427 # \n\
00428 # This recommendation is to promote interoperability. \n\
00429 #\n\
00430 # This message is designed to take up less space when sending\n\
00431 # lots of points at once, as in the case of a PointCloud. \n\
00432 \n\
00433 float32 x\n\
00434 float32 y\n\
00435 float32 z\n\
00436 ================================================================================\n\
00437 MSG: arm_navigation_msgs/MotionPlanRequest\n\
00438 # This service contains the definition for a request to the motion\n\
00439 # planner and the output it provides\n\
00440 \n\
00441 # Parameters for the workspace that the planner should work inside\n\
00442 arm_navigation_msgs/WorkspaceParameters workspace_parameters\n\
00443 \n\
00444 # Starting state updates. If certain joints should be considered\n\
00445 # at positions other than the current ones, these positions should\n\
00446 # be set here\n\
00447 arm_navigation_msgs/RobotState start_state\n\
00448 \n\
00449 # The goal state for the model to plan for. The goal is achieved\n\
00450 # if all constraints are satisfied\n\
00451 arm_navigation_msgs/Constraints goal_constraints\n\
00452 \n\
00453 # No state at any point along the path in the produced motion plan will violate these constraints\n\
00454 arm_navigation_msgs/Constraints path_constraints\n\
00455 \n\
00456 # The name of the motion planner to use. If no name is specified,\n\
00457 # a default motion planner will be used\n\
00458 string planner_id\n\
00459 \n\
00460 # The name of the group of joints on which this planner is operating\n\
00461 string group_name\n\
00462 \n\
00463 # The number of times this plan is to be computed. Shortest solution\n\
00464 # will be reported.\n\
00465 int32 num_planning_attempts\n\
00466 \n\
00467 # The maximum amount of time the motion planner is allowed to plan for\n\
00468 duration allowed_planning_time\n\
00469 \n\
00470 # An expected path duration (in seconds) along with an expected discretization of the path allows the planner to determine the discretization of the trajectory that it returns\n\
00471 duration expected_path_duration\n\
00472 duration expected_path_dt\n\
00473 \n\
00474 ================================================================================\n\
00475 MSG: arm_navigation_msgs/WorkspaceParameters\n\
00476 # This message contains a set of parameters useful in\n\
00477 # setting up the workspace for planning\n\
00478 arm_navigation_msgs/Shape workspace_region_shape\n\
00479 geometry_msgs/PoseStamped workspace_region_pose\n\
00480 \n\
00481 \n\
00482 ================================================================================\n\
00483 MSG: arm_navigation_msgs/Constraints\n\
00484 # This message contains a list of motion planning constraints.\n\
00485 \n\
00486 arm_navigation_msgs/JointConstraint[] joint_constraints\n\
00487 arm_navigation_msgs/PositionConstraint[] position_constraints\n\
00488 arm_navigation_msgs/OrientationConstraint[] orientation_constraints\n\
00489 arm_navigation_msgs/VisibilityConstraint[] visibility_constraints\n\
00490 \n\
00491 ================================================================================\n\
00492 MSG: arm_navigation_msgs/JointConstraint\n\
00493 # Constrain the position of a joint to be within a certain bound\n\
00494 string joint_name\n\
00495 \n\
00496 # the bound to be achieved is [position - tolerance_below, position + tolerance_above]\n\
00497 float64 position\n\
00498 float64 tolerance_above\n\
00499 float64 tolerance_below\n\
00500 \n\
00501 # A weighting factor for this constraint\n\
00502 float64 weight\n\
00503 ================================================================================\n\
00504 MSG: arm_navigation_msgs/PositionConstraint\n\
00505 # This message contains the definition of a position constraint.\n\
00506 Header header\n\
00507 \n\
00508 # The robot link this constraint refers to\n\
00509 string link_name\n\
00510 \n\
00511 # The offset (in the link frame) for the target point on the link we are planning for\n\
00512 geometry_msgs/Point target_point_offset\n\
00513 \n\
00514 # The nominal/target position for the point we are planning for\n\
00515 geometry_msgs/Point position\n\
00516 \n\
00517 # The shape of the bounded region that constrains the position of the end-effector\n\
00518 # This region is always centered at the position defined above\n\
00519 arm_navigation_msgs/Shape constraint_region_shape\n\
00520 \n\
00521 # The orientation of the bounded region that constrains the position of the end-effector. \n\
00522 # This allows the specification of non-axis aligned constraints\n\
00523 geometry_msgs/Quaternion constraint_region_orientation\n\
00524 \n\
00525 # Constraint weighting factor - a weight for this constraint\n\
00526 float64 weight\n\
00527 \n\
00528 ================================================================================\n\
00529 MSG: arm_navigation_msgs/OrientationConstraint\n\
00530 # This message contains the definition of an orientation constraint.\n\
00531 Header header\n\
00532 \n\
00533 # The robot link this constraint refers to\n\
00534 string link_name\n\
00535 \n\
00536 # The type of the constraint\n\
00537 int32 type\n\
00538 int32 LINK_FRAME=0\n\
00539 int32 HEADER_FRAME=1\n\
00540 \n\
00541 # The desired orientation of the robot link specified as a quaternion\n\
00542 geometry_msgs/Quaternion orientation\n\
00543 \n\
00544 # optional RPY error tolerances specified if \n\
00545 float64 absolute_roll_tolerance\n\
00546 float64 absolute_pitch_tolerance\n\
00547 float64 absolute_yaw_tolerance\n\
00548 \n\
00549 # Constraint weighting factor - a weight for this constraint\n\
00550 float64 weight\n\
00551 \n\
00552 ================================================================================\n\
00553 MSG: arm_navigation_msgs/VisibilityConstraint\n\
00554 # This message contains the definition of a visibility constraint.\n\
00555 Header header\n\
00556 \n\
00557 # The point stamped target that needs to be kept within view of the sensor\n\
00558 geometry_msgs/PointStamped target\n\
00559 \n\
00560 # The local pose of the frame in which visibility is to be maintained\n\
00561 # The frame id should represent the robot link to which the sensor is attached\n\
00562 # The visual axis of the sensor is assumed to be along the X axis of this frame\n\
00563 geometry_msgs/PoseStamped sensor_pose\n\
00564 \n\
00565 # The deviation (in radians) that will be tolerated\n\
00566 # Constraint error will be measured as the solid angle between the \n\
00567 # X axis of the frame defined above and the vector between the origin \n\
00568 # of the frame defined above and the target location\n\
00569 float64 absolute_tolerance\n\
00570 \n\
00571 \n\
00572 ================================================================================\n\
00573 MSG: geometry_msgs/PointStamped\n\
00574 # This represents a Point with reference coordinate frame and timestamp\n\
00575 Header header\n\
00576 Point point\n\
00577 \n\
00578 ================================================================================\n\
00579 MSG: arm_navigation_msgs/OrderedCollisionOperations\n\
00580 # A set of collision operations that will be performed in the order they are specified\n\
00581 CollisionOperation[] collision_operations\n\
00582 ================================================================================\n\
00583 MSG: arm_navigation_msgs/CollisionOperation\n\
00584 # A definition of a collision operation\n\
00585 # E.g. (\"gripper\",COLLISION_SET_ALL,ENABLE) will enable collisions \n\
00586 # between the gripper and all objects in the collision space\n\
00587 \n\
00588 string object1\n\
00589 string object2\n\
00590 string COLLISION_SET_ALL=\"all\"\n\
00591 string COLLISION_SET_OBJECTS=\"objects\"\n\
00592 string COLLISION_SET_ATTACHED_OBJECTS=\"attached\"\n\
00593 \n\
00594 # The penetration distance to which collisions are allowed. This is 0.0 by default.\n\
00595 float64 penetration_distance\n\
00596 \n\
00597 # Flag that determines whether collisions will be enabled or disabled for the pair of objects specified above\n\
00598 int32 operation\n\
00599 int32 DISABLE=0\n\
00600 int32 ENABLE=1\n\
00601 \n\
00602 "; }
00603 public:
00604 ROS_DEPRECATED static const std::string __s_getMessageDefinition() { return __s_getMessageDefinition_(); }
00605
00606 ROS_DEPRECATED const std::string __getMessageDefinition() const { return __s_getMessageDefinition_(); }
00607
00608 ROS_DEPRECATED virtual uint8_t *serialize(uint8_t *write_ptr, uint32_t seq) const
00609 {
00610 ros::serialization::OStream stream(write_ptr, 1000000000);
00611 ros::serialization::serialize(stream, header);
00612 ros::serialization::serialize(stream, goal_id);
00613 ros::serialization::serialize(stream, goal);
00614 return stream.getData();
00615 }
00616
00617 ROS_DEPRECATED virtual uint8_t *deserialize(uint8_t *read_ptr)
00618 {
00619 ros::serialization::IStream stream(read_ptr, 1000000000);
00620 ros::serialization::deserialize(stream, header);
00621 ros::serialization::deserialize(stream, goal_id);
00622 ros::serialization::deserialize(stream, goal);
00623 return stream.getData();
00624 }
00625
00626 ROS_DEPRECATED virtual uint32_t serializationLength() const
00627 {
00628 uint32_t size = 0;
00629 size += ros::serialization::serializationLength(header);
00630 size += ros::serialization::serializationLength(goal_id);
00631 size += ros::serialization::serializationLength(goal);
00632 return size;
00633 }
00634
00635 typedef boost::shared_ptr< ::arm_navigation_msgs::MoveArmActionGoal_<ContainerAllocator> > Ptr;
00636 typedef boost::shared_ptr< ::arm_navigation_msgs::MoveArmActionGoal_<ContainerAllocator> const> ConstPtr;
00637 boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00638 };
00639 typedef ::arm_navigation_msgs::MoveArmActionGoal_<std::allocator<void> > MoveArmActionGoal;
00640
00641 typedef boost::shared_ptr< ::arm_navigation_msgs::MoveArmActionGoal> MoveArmActionGoalPtr;
00642 typedef boost::shared_ptr< ::arm_navigation_msgs::MoveArmActionGoal const> MoveArmActionGoalConstPtr;
00643
00644
00645 template<typename ContainerAllocator>
00646 std::ostream& operator<<(std::ostream& s, const ::arm_navigation_msgs::MoveArmActionGoal_<ContainerAllocator> & v)
00647 {
00648 ros::message_operations::Printer< ::arm_navigation_msgs::MoveArmActionGoal_<ContainerAllocator> >::stream(s, "", v);
00649 return s;}
00650
00651 }
00652
00653 namespace ros
00654 {
00655 namespace message_traits
00656 {
00657 template<class ContainerAllocator> struct IsMessage< ::arm_navigation_msgs::MoveArmActionGoal_<ContainerAllocator> > : public TrueType {};
00658 template<class ContainerAllocator> struct IsMessage< ::arm_navigation_msgs::MoveArmActionGoal_<ContainerAllocator> const> : public TrueType {};
00659 template<class ContainerAllocator>
00660 struct MD5Sum< ::arm_navigation_msgs::MoveArmActionGoal_<ContainerAllocator> > {
00661 static const char* value()
00662 {
00663 return "d560cc046d6b5e8bf3f70a960054d6c6";
00664 }
00665
00666 static const char* value(const ::arm_navigation_msgs::MoveArmActionGoal_<ContainerAllocator> &) { return value(); }
00667 static const uint64_t static_value1 = 0xd560cc046d6b5e8bULL;
00668 static const uint64_t static_value2 = 0xf3f70a960054d6c6ULL;
00669 };
00670
00671 template<class ContainerAllocator>
00672 struct DataType< ::arm_navigation_msgs::MoveArmActionGoal_<ContainerAllocator> > {
00673 static const char* value()
00674 {
00675 return "arm_navigation_msgs/MoveArmActionGoal";
00676 }
00677
00678 static const char* value(const ::arm_navigation_msgs::MoveArmActionGoal_<ContainerAllocator> &) { return value(); }
00679 };
00680
00681 template<class ContainerAllocator>
00682 struct Definition< ::arm_navigation_msgs::MoveArmActionGoal_<ContainerAllocator> > {
00683 static const char* value()
00684 {
00685 return "# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00686 \n\
00687 Header header\n\
00688 actionlib_msgs/GoalID goal_id\n\
00689 MoveArmGoal goal\n\
00690 \n\
00691 ================================================================================\n\
00692 MSG: std_msgs/Header\n\
00693 # Standard metadata for higher-level stamped data types.\n\
00694 # This is generally used to communicate timestamped data \n\
00695 # in a particular coordinate frame.\n\
00696 # \n\
00697 # sequence ID: consecutively increasing ID \n\
00698 uint32 seq\n\
00699 #Two-integer timestamp that is expressed as:\n\
00700 # * stamp.secs: seconds (stamp_secs) since epoch\n\
00701 # * stamp.nsecs: nanoseconds since stamp_secs\n\
00702 # time-handling sugar is provided by the client library\n\
00703 time stamp\n\
00704 #Frame this data is associated with\n\
00705 # 0: no frame\n\
00706 # 1: global frame\n\
00707 string frame_id\n\
00708 \n\
00709 ================================================================================\n\
00710 MSG: actionlib_msgs/GoalID\n\
00711 # The stamp should store the time at which this goal was requested.\n\
00712 # It is used by an action server when it tries to preempt all\n\
00713 # goals that were requested before a certain time\n\
00714 time stamp\n\
00715 \n\
00716 # The id provides a way to associate feedback and\n\
00717 # result message with specific goal requests. The id\n\
00718 # specified must be unique.\n\
00719 string id\n\
00720 \n\
00721 \n\
00722 ================================================================================\n\
00723 MSG: arm_navigation_msgs/MoveArmGoal\n\
00724 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00725 # Service name to call for getting a motion plan\n\
00726 # Move arm will call a service on this service name \n\
00727 # using the MotionPlanRequest specified here\n\
00728 string planner_service_name\n\
00729 \n\
00730 # A planning scene diff\n\
00731 PlanningScene planning_scene_diff\n\
00732 \n\
00733 # A motion planning request\n\
00734 MotionPlanRequest motion_plan_request\n\
00735 \n\
00736 # OPTIONAL: Diff uses ordered collision operations in addition to allowed_collision_matrix\n\
00737 arm_navigation_msgs/OrderedCollisionOperations operations\n\
00738 \n\
00739 # OPTIONAL flag\n\
00740 # Setting this flag to true will allow move_arm to accept plans that do not go all the way to the goal\n\
00741 bool accept_partial_plans\n\
00742 \n\
00743 # OPTIONAL flag\n\
00744 # Setting this flag to true will allow move_arm to accept invalid goals\n\
00745 # This is useful if you are using a planner like CHOMP along with a noisy rapidly changing collision map\n\
00746 # and you would like to plan to a goal near an object.\n\
00747 bool accept_invalid_goals\n\
00748 \n\
00749 # OPTIONAL flag\n\
00750 # Setting this flag to true will disable the call to IK for a pose goal\n\
00751 bool disable_ik\n\
00752 \n\
00753 # OPTIONAL flag\n\
00754 # Setting this flag to true will disable collision monitoring during execution of a trajectory\n\
00755 bool disable_collision_monitoring\n\
00756 \n\
00757 ================================================================================\n\
00758 MSG: arm_navigation_msgs/PlanningScene\n\
00759 #full robot state\n\
00760 arm_navigation_msgs/RobotState robot_state\n\
00761 \n\
00762 #additional frames for duplicating tf\n\
00763 geometry_msgs/TransformStamped[] fixed_frame_transforms\n\
00764 \n\
00765 #full allowed collision matrix\n\
00766 AllowedCollisionMatrix allowed_collision_matrix\n\
00767 \n\
00768 #allowed contacts\n\
00769 arm_navigation_msgs/AllowedContactSpecification[] allowed_contacts\n\
00770 \n\
00771 #all link paddings\n\
00772 arm_navigation_msgs/LinkPadding[] link_padding\n\
00773 \n\
00774 #collision objects\n\
00775 arm_navigation_msgs/CollisionObject[] collision_objects\n\
00776 arm_navigation_msgs/AttachedCollisionObject[] attached_collision_objects\n\
00777 \n\
00778 #the collision map\n\
00779 arm_navigation_msgs/CollisionMap collision_map\n\
00780 \n\
00781 ================================================================================\n\
00782 MSG: arm_navigation_msgs/RobotState\n\
00783 # This message contains information about the robot state, i.e. the positions of its joints and links\n\
00784 sensor_msgs/JointState joint_state\n\
00785 arm_navigation_msgs/MultiDOFJointState multi_dof_joint_state\n\
00786 \n\
00787 ================================================================================\n\
00788 MSG: sensor_msgs/JointState\n\
00789 # This is a message that holds data to describe the state of a set of torque controlled joints. \n\
00790 #\n\
00791 # The state of each joint (revolute or prismatic) is defined by:\n\
00792 # * the position of the joint (rad or m),\n\
00793 # * the velocity of the joint (rad/s or m/s) and \n\
00794 # * the effort that is applied in the joint (Nm or N).\n\
00795 #\n\
00796 # Each joint is uniquely identified by its name\n\
00797 # The header specifies the time at which the joint states were recorded. All the joint states\n\
00798 # in one message have to be recorded at the same time.\n\
00799 #\n\
00800 # This message consists of a multiple arrays, one for each part of the joint state. \n\
00801 # The goal is to make each of the fields optional. When e.g. your joints have no\n\
00802 # effort associated with them, you can leave the effort array empty. \n\
00803 #\n\
00804 # All arrays in this message should have the same size, or be empty.\n\
00805 # This is the only way to uniquely associate the joint name with the correct\n\
00806 # states.\n\
00807 \n\
00808 \n\
00809 Header header\n\
00810 \n\
00811 string[] name\n\
00812 float64[] position\n\
00813 float64[] velocity\n\
00814 float64[] effort\n\
00815 \n\
00816 ================================================================================\n\
00817 MSG: arm_navigation_msgs/MultiDOFJointState\n\
00818 #A representation of a multi-dof joint state\n\
00819 time stamp\n\
00820 string[] joint_names\n\
00821 string[] frame_ids\n\
00822 string[] child_frame_ids\n\
00823 geometry_msgs/Pose[] poses\n\
00824 \n\
00825 ================================================================================\n\
00826 MSG: geometry_msgs/Pose\n\
00827 # A representation of pose in free space, composed of postion and orientation. \n\
00828 Point position\n\
00829 Quaternion orientation\n\
00830 \n\
00831 ================================================================================\n\
00832 MSG: geometry_msgs/Point\n\
00833 # This contains the position of a point in free space\n\
00834 float64 x\n\
00835 float64 y\n\
00836 float64 z\n\
00837 \n\
00838 ================================================================================\n\
00839 MSG: geometry_msgs/Quaternion\n\
00840 # This represents an orientation in free space in quaternion form.\n\
00841 \n\
00842 float64 x\n\
00843 float64 y\n\
00844 float64 z\n\
00845 float64 w\n\
00846 \n\
00847 ================================================================================\n\
00848 MSG: geometry_msgs/TransformStamped\n\
00849 # This expresses a transform from coordinate frame header.frame_id\n\
00850 # to the coordinate frame child_frame_id\n\
00851 #\n\
00852 # This message is mostly used by the \n\
00853 # <a href=\"http://www.ros.org/wiki/tf\">tf</a> package. \n\
00854 # See it's documentation for more information.\n\
00855 \n\
00856 Header header\n\
00857 string child_frame_id # the frame id of the child frame\n\
00858 Transform transform\n\
00859 \n\
00860 ================================================================================\n\
00861 MSG: geometry_msgs/Transform\n\
00862 # This represents the transform between two coordinate frames in free space.\n\
00863 \n\
00864 Vector3 translation\n\
00865 Quaternion rotation\n\
00866 \n\
00867 ================================================================================\n\
00868 MSG: geometry_msgs/Vector3\n\
00869 # This represents a vector in free space. \n\
00870 \n\
00871 float64 x\n\
00872 float64 y\n\
00873 float64 z\n\
00874 ================================================================================\n\
00875 MSG: arm_navigation_msgs/AllowedCollisionMatrix\n\
00876 # the list of link names in the matrix\n\
00877 string[] link_names\n\
00878 \n\
00879 # the individual entries in the allowed collision matrix\n\
00880 # symmetric, with same order as link_names\n\
00881 AllowedCollisionEntry[] entries\n\
00882 \n\
00883 ================================================================================\n\
00884 MSG: arm_navigation_msgs/AllowedCollisionEntry\n\
00885 # whether or not collision checking is enabled\n\
00886 bool[] enabled\n\
00887 \n\
00888 ================================================================================\n\
00889 MSG: arm_navigation_msgs/AllowedContactSpecification\n\
00890 # The names of the regions\n\
00891 string name\n\
00892 \n\
00893 # The shape of the region in the environment\n\
00894 arm_navigation_msgs/Shape shape\n\
00895 \n\
00896 # The pose of the space defining the region\n\
00897 geometry_msgs/PoseStamped pose_stamped\n\
00898 \n\
00899 # The set of links that will be allowed to have penetration contact within this region\n\
00900 string[] link_names\n\
00901 \n\
00902 # The maximum penetration depth allowed for every link\n\
00903 float64 penetration_depth\n\
00904 \n\
00905 ================================================================================\n\
00906 MSG: arm_navigation_msgs/Shape\n\
00907 byte SPHERE=0\n\
00908 byte BOX=1\n\
00909 byte CYLINDER=2\n\
00910 byte MESH=3\n\
00911 \n\
00912 byte type\n\
00913 \n\
00914 \n\
00915 #### define sphere, box, cylinder ####\n\
00916 # the origin of each shape is considered at the shape's center\n\
00917 \n\
00918 # for sphere\n\
00919 # radius := dimensions[0]\n\
00920 \n\
00921 # for cylinder\n\
00922 # radius := dimensions[0]\n\
00923 # length := dimensions[1]\n\
00924 # the length is along the Z axis\n\
00925 \n\
00926 # for box\n\
00927 # size_x := dimensions[0]\n\
00928 # size_y := dimensions[1]\n\
00929 # size_z := dimensions[2]\n\
00930 float64[] dimensions\n\
00931 \n\
00932 \n\
00933 #### define mesh ####\n\
00934 \n\
00935 # list of triangles; triangle k is defined by tre vertices located\n\
00936 # at indices triangles[3k], triangles[3k+1], triangles[3k+2]\n\
00937 int32[] triangles\n\
00938 geometry_msgs/Point[] vertices\n\
00939 \n\
00940 ================================================================================\n\
00941 MSG: geometry_msgs/PoseStamped\n\
00942 # A Pose with reference coordinate frame and timestamp\n\
00943 Header header\n\
00944 Pose pose\n\
00945 \n\
00946 ================================================================================\n\
00947 MSG: arm_navigation_msgs/LinkPadding\n\
00948 #name for the link\n\
00949 string link_name\n\
00950 \n\
00951 # padding to apply to the link\n\
00952 float64 padding\n\
00953 \n\
00954 ================================================================================\n\
00955 MSG: arm_navigation_msgs/CollisionObject\n\
00956 # a header, used for interpreting the poses\n\
00957 Header header\n\
00958 \n\
00959 # the id of the object\n\
00960 string id\n\
00961 \n\
00962 # The padding used for filtering points near the object.\n\
00963 # This does not affect collision checking for the object. \n\
00964 # Set to negative to get zero padding.\n\
00965 float32 padding\n\
00966 \n\
00967 #This contains what is to be done with the object\n\
00968 CollisionObjectOperation operation\n\
00969 \n\
00970 #the shapes associated with the object\n\
00971 arm_navigation_msgs/Shape[] shapes\n\
00972 \n\
00973 #the poses associated with the shapes - will be transformed using the header\n\
00974 geometry_msgs/Pose[] poses\n\
00975 \n\
00976 ================================================================================\n\
00977 MSG: arm_navigation_msgs/CollisionObjectOperation\n\
00978 #Puts the object into the environment\n\
00979 #or updates the object if already added\n\
00980 byte ADD=0\n\
00981 \n\
00982 #Removes the object from the environment entirely\n\
00983 byte REMOVE=1\n\
00984 \n\
00985 #Only valid within the context of a CollisionAttachedObject message\n\
00986 #Will be ignored if sent with an CollisionObject message\n\
00987 #Takes an attached object, detaches from the attached link\n\
00988 #But adds back in as regular object\n\
00989 byte DETACH_AND_ADD_AS_OBJECT=2\n\
00990 \n\
00991 #Only valid within the context of a CollisionAttachedObject message\n\
00992 #Will be ignored if sent with an CollisionObject message\n\
00993 #Takes current object in the environment and removes it as\n\
00994 #a regular object\n\
00995 byte ATTACH_AND_REMOVE_AS_OBJECT=3\n\
00996 \n\
00997 # Byte code for operation\n\
00998 byte operation\n\
00999 \n\
01000 ================================================================================\n\
01001 MSG: arm_navigation_msgs/AttachedCollisionObject\n\
01002 # The CollisionObject will be attached with a fixed joint to this link\n\
01003 # If link name is set to REMOVE_ALL_ATTACHED_OBJECTS and object.operation \n\
01004 # is set to REMOVE will remove all attached bodies attached to any object\n\
01005 string link_name\n\
01006 \n\
01007 #Reserved for indicating that all attached objects should be removed\n\
01008 string REMOVE_ALL_ATTACHED_OBJECTS = \"all\"\n\
01009 \n\
01010 #This contains the actual shapes and poses for the CollisionObject\n\
01011 #to be attached to the link\n\
01012 #If action is remove and no object.id is set, all objects\n\
01013 #attached to the link indicated by link_name will be removed\n\
01014 CollisionObject object\n\
01015 \n\
01016 # The set of links that the attached objects are allowed to touch\n\
01017 # by default - the link_name is included by default\n\
01018 string[] touch_links\n\
01019 \n\
01020 ================================================================================\n\
01021 MSG: arm_navigation_msgs/CollisionMap\n\
01022 #header for interpreting box positions\n\
01023 Header header\n\
01024 \n\
01025 #boxes for use in collision testing\n\
01026 OrientedBoundingBox[] boxes\n\
01027 \n\
01028 ================================================================================\n\
01029 MSG: arm_navigation_msgs/OrientedBoundingBox\n\
01030 #the center of the box\n\
01031 geometry_msgs/Point32 center\n\
01032 \n\
01033 #the extents of the box, assuming the center is at the point\n\
01034 geometry_msgs/Point32 extents\n\
01035 \n\
01036 #the axis of the box\n\
01037 geometry_msgs/Point32 axis\n\
01038 \n\
01039 #the angle of rotation around the axis\n\
01040 float32 angle\n\
01041 \n\
01042 ================================================================================\n\
01043 MSG: geometry_msgs/Point32\n\
01044 # This contains the position of a point in free space(with 32 bits of precision).\n\
01045 # It is recommeded to use Point wherever possible instead of Point32. \n\
01046 # \n\
01047 # This recommendation is to promote interoperability. \n\
01048 #\n\
01049 # This message is designed to take up less space when sending\n\
01050 # lots of points at once, as in the case of a PointCloud. \n\
01051 \n\
01052 float32 x\n\
01053 float32 y\n\
01054 float32 z\n\
01055 ================================================================================\n\
01056 MSG: arm_navigation_msgs/MotionPlanRequest\n\
01057 # This service contains the definition for a request to the motion\n\
01058 # planner and the output it provides\n\
01059 \n\
01060 # Parameters for the workspace that the planner should work inside\n\
01061 arm_navigation_msgs/WorkspaceParameters workspace_parameters\n\
01062 \n\
01063 # Starting state updates. If certain joints should be considered\n\
01064 # at positions other than the current ones, these positions should\n\
01065 # be set here\n\
01066 arm_navigation_msgs/RobotState start_state\n\
01067 \n\
01068 # The goal state for the model to plan for. The goal is achieved\n\
01069 # if all constraints are satisfied\n\
01070 arm_navigation_msgs/Constraints goal_constraints\n\
01071 \n\
01072 # No state at any point along the path in the produced motion plan will violate these constraints\n\
01073 arm_navigation_msgs/Constraints path_constraints\n\
01074 \n\
01075 # The name of the motion planner to use. If no name is specified,\n\
01076 # a default motion planner will be used\n\
01077 string planner_id\n\
01078 \n\
01079 # The name of the group of joints on which this planner is operating\n\
01080 string group_name\n\
01081 \n\
01082 # The number of times this plan is to be computed. Shortest solution\n\
01083 # will be reported.\n\
01084 int32 num_planning_attempts\n\
01085 \n\
01086 # The maximum amount of time the motion planner is allowed to plan for\n\
01087 duration allowed_planning_time\n\
01088 \n\
01089 # An expected path duration (in seconds) along with an expected discretization of the path allows the planner to determine the discretization of the trajectory that it returns\n\
01090 duration expected_path_duration\n\
01091 duration expected_path_dt\n\
01092 \n\
01093 ================================================================================\n\
01094 MSG: arm_navigation_msgs/WorkspaceParameters\n\
01095 # This message contains a set of parameters useful in\n\
01096 # setting up the workspace for planning\n\
01097 arm_navigation_msgs/Shape workspace_region_shape\n\
01098 geometry_msgs/PoseStamped workspace_region_pose\n\
01099 \n\
01100 \n\
01101 ================================================================================\n\
01102 MSG: arm_navigation_msgs/Constraints\n\
01103 # This message contains a list of motion planning constraints.\n\
01104 \n\
01105 arm_navigation_msgs/JointConstraint[] joint_constraints\n\
01106 arm_navigation_msgs/PositionConstraint[] position_constraints\n\
01107 arm_navigation_msgs/OrientationConstraint[] orientation_constraints\n\
01108 arm_navigation_msgs/VisibilityConstraint[] visibility_constraints\n\
01109 \n\
01110 ================================================================================\n\
01111 MSG: arm_navigation_msgs/JointConstraint\n\
01112 # Constrain the position of a joint to be within a certain bound\n\
01113 string joint_name\n\
01114 \n\
01115 # the bound to be achieved is [position - tolerance_below, position + tolerance_above]\n\
01116 float64 position\n\
01117 float64 tolerance_above\n\
01118 float64 tolerance_below\n\
01119 \n\
01120 # A weighting factor for this constraint\n\
01121 float64 weight\n\
01122 ================================================================================\n\
01123 MSG: arm_navigation_msgs/PositionConstraint\n\
01124 # This message contains the definition of a position constraint.\n\
01125 Header header\n\
01126 \n\
01127 # The robot link this constraint refers to\n\
01128 string link_name\n\
01129 \n\
01130 # The offset (in the link frame) for the target point on the link we are planning for\n\
01131 geometry_msgs/Point target_point_offset\n\
01132 \n\
01133 # The nominal/target position for the point we are planning for\n\
01134 geometry_msgs/Point position\n\
01135 \n\
01136 # The shape of the bounded region that constrains the position of the end-effector\n\
01137 # This region is always centered at the position defined above\n\
01138 arm_navigation_msgs/Shape constraint_region_shape\n\
01139 \n\
01140 # The orientation of the bounded region that constrains the position of the end-effector. \n\
01141 # This allows the specification of non-axis aligned constraints\n\
01142 geometry_msgs/Quaternion constraint_region_orientation\n\
01143 \n\
01144 # Constraint weighting factor - a weight for this constraint\n\
01145 float64 weight\n\
01146 \n\
01147 ================================================================================\n\
01148 MSG: arm_navigation_msgs/OrientationConstraint\n\
01149 # This message contains the definition of an orientation constraint.\n\
01150 Header header\n\
01151 \n\
01152 # The robot link this constraint refers to\n\
01153 string link_name\n\
01154 \n\
01155 # The type of the constraint\n\
01156 int32 type\n\
01157 int32 LINK_FRAME=0\n\
01158 int32 HEADER_FRAME=1\n\
01159 \n\
01160 # The desired orientation of the robot link specified as a quaternion\n\
01161 geometry_msgs/Quaternion orientation\n\
01162 \n\
01163 # optional RPY error tolerances specified if \n\
01164 float64 absolute_roll_tolerance\n\
01165 float64 absolute_pitch_tolerance\n\
01166 float64 absolute_yaw_tolerance\n\
01167 \n\
01168 # Constraint weighting factor - a weight for this constraint\n\
01169 float64 weight\n\
01170 \n\
01171 ================================================================================\n\
01172 MSG: arm_navigation_msgs/VisibilityConstraint\n\
01173 # This message contains the definition of a visibility constraint.\n\
01174 Header header\n\
01175 \n\
01176 # The point stamped target that needs to be kept within view of the sensor\n\
01177 geometry_msgs/PointStamped target\n\
01178 \n\
01179 # The local pose of the frame in which visibility is to be maintained\n\
01180 # The frame id should represent the robot link to which the sensor is attached\n\
01181 # The visual axis of the sensor is assumed to be along the X axis of this frame\n\
01182 geometry_msgs/PoseStamped sensor_pose\n\
01183 \n\
01184 # The deviation (in radians) that will be tolerated\n\
01185 # Constraint error will be measured as the solid angle between the \n\
01186 # X axis of the frame defined above and the vector between the origin \n\
01187 # of the frame defined above and the target location\n\
01188 float64 absolute_tolerance\n\
01189 \n\
01190 \n\
01191 ================================================================================\n\
01192 MSG: geometry_msgs/PointStamped\n\
01193 # This represents a Point with reference coordinate frame and timestamp\n\
01194 Header header\n\
01195 Point point\n\
01196 \n\
01197 ================================================================================\n\
01198 MSG: arm_navigation_msgs/OrderedCollisionOperations\n\
01199 # A set of collision operations that will be performed in the order they are specified\n\
01200 CollisionOperation[] collision_operations\n\
01201 ================================================================================\n\
01202 MSG: arm_navigation_msgs/CollisionOperation\n\
01203 # A definition of a collision operation\n\
01204 # E.g. (\"gripper\",COLLISION_SET_ALL,ENABLE) will enable collisions \n\
01205 # between the gripper and all objects in the collision space\n\
01206 \n\
01207 string object1\n\
01208 string object2\n\
01209 string COLLISION_SET_ALL=\"all\"\n\
01210 string COLLISION_SET_OBJECTS=\"objects\"\n\
01211 string COLLISION_SET_ATTACHED_OBJECTS=\"attached\"\n\
01212 \n\
01213 # The penetration distance to which collisions are allowed. This is 0.0 by default.\n\
01214 float64 penetration_distance\n\
01215 \n\
01216 # Flag that determines whether collisions will be enabled or disabled for the pair of objects specified above\n\
01217 int32 operation\n\
01218 int32 DISABLE=0\n\
01219 int32 ENABLE=1\n\
01220 \n\
01221 ";
01222 }
01223
01224 static const char* value(const ::arm_navigation_msgs::MoveArmActionGoal_<ContainerAllocator> &) { return value(); }
01225 };
01226
01227 template<class ContainerAllocator> struct HasHeader< ::arm_navigation_msgs::MoveArmActionGoal_<ContainerAllocator> > : public TrueType {};
01228 template<class ContainerAllocator> struct HasHeader< const ::arm_navigation_msgs::MoveArmActionGoal_<ContainerAllocator> > : public TrueType {};
01229 }
01230 }
01231
01232 namespace ros
01233 {
01234 namespace serialization
01235 {
01236
01237 template<class ContainerAllocator> struct Serializer< ::arm_navigation_msgs::MoveArmActionGoal_<ContainerAllocator> >
01238 {
01239 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
01240 {
01241 stream.next(m.header);
01242 stream.next(m.goal_id);
01243 stream.next(m.goal);
01244 }
01245
01246 ROS_DECLARE_ALLINONE_SERIALIZER;
01247 };
01248 }
01249 }
01250
01251 namespace ros
01252 {
01253 namespace message_operations
01254 {
01255
01256 template<class ContainerAllocator>
01257 struct Printer< ::arm_navigation_msgs::MoveArmActionGoal_<ContainerAllocator> >
01258 {
01259 template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::arm_navigation_msgs::MoveArmActionGoal_<ContainerAllocator> & v)
01260 {
01261 s << indent << "header: ";
01262 s << std::endl;
01263 Printer< ::std_msgs::Header_<ContainerAllocator> >::stream(s, indent + " ", v.header);
01264 s << indent << "goal_id: ";
01265 s << std::endl;
01266 Printer< ::actionlib_msgs::GoalID_<ContainerAllocator> >::stream(s, indent + " ", v.goal_id);
01267 s << indent << "goal: ";
01268 s << std::endl;
01269 Printer< ::arm_navigation_msgs::MoveArmGoal_<ContainerAllocator> >::stream(s, indent + " ", v.goal);
01270 }
01271 };
01272
01273
01274 }
01275 }
01276
01277 #endif // ARM_NAVIGATION_MSGS_MESSAGE_MOVEARMACTIONGOAL_H
01278