Sarafun Behavior Trees package  1
Behavior trees for the SARAFun project
 All Data Structures Namespaces Functions Variables Enumerations Enumerator
InsertionWithDeformationAction.cpp
1 #include <sarafun_tree/demo_bt_nodes/InsertionWithDeformationAction.h>
2 
3 namespace sarafun {
5  double timeout = 0;
6  fillParameter("/sarafun/bt/insertion_deformation/timeout", 30.0, timeout);
7 
8  return timeout;
9 }
10 
12  sarafun_assembly::InsertionGoal &goal) {
13  return true;
14 }
15 }
16 
17 int main(int argc, char **argv) {
18  ros::init(argc, argv, "InsertionWithDeformation");
20  ros::this_node::getName(), "/sarafun/assembly/insertion",
21  "insertion_with_deformation_action");
22  ros::spin();
23  return 1;
24 }
bool fillGoal(sarafun_assembly::InsertionGoal &goal)