+<?xml version="1.0" ?>
+<!--******************************************************************************
+ Crane Description
+ Payload Description
+ Copyright (C) 2024 Walter Fetter Lages <w.fetter@ieee.org>
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Geneal Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see
+ <http://www.gnu.org/licenses/>.
+
+*******************************************************************************-->
+
+<robot xmlns:xacro="http://www.ros.org/wiki/xacro">
+ <xacro:arg name="ignition" default="false"/>
+
+ <xacro:include filename="prismatic.xacro"/>
+
+ <xacro:property name="payload_radius" value="5e-2"/>
+ <xacro:property name="payload_length" value="10e-2"/>
+
+ <xacro:property name="payload_mass" value="5"/>
+
+ <xacro:cylinder name="payload"
+ length="${payload_length}"
+ radius="${payload_radius}"
+ mass="${payload_mass}"
+ parent="hook_link">
+ <origin xyz="0 0 ${-payload_length/2}"/>
+ </xacro:cylinder>
+</robot>