You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -16,7 +16,7 @@ class NDTRegistration : public moveit_studio::behaviors::AsyncBehaviorBase
16
16
{
17
17
public:
18
18
/**
19
-
* @brief Constructor for the picknik_registration behavior.
19
+
* @brief Constructor for the behavior.
20
20
* @param name The name of a particular instance of this Behavior. This will be set by the behavior tree factory when this Behavior is created within a new behavior tree.
21
21
* @param shared_resources A shared_ptr to a BehaviorContext that is shared among all SharedResourcesNode Behaviors in the behavior tree. This BehaviorContext is owned by the Studio Agent's ObjectiveServerNode.
22
22
* @param config This contains runtime configuration info for this Behavior, such as the mapping between the Behavior's data ports on the behavior tree's blackboard. This will be set by the behavior tree factory when this Behavior is created within a new behavior tree.
@@ -25,10 +25,10 @@ class NDTRegistration : public moveit_studio::behaviors::AsyncBehaviorBase
* @brief Implementation of the required providedPorts() function for the picknik_registration Behavior.
28
+
* @brief Implementation of the required providedPorts() function for the Behavior.
29
29
* @details The BehaviorTree.CPP library requires that Behaviors must implement a static function named providedPorts() which defines their input and output ports. If the Behavior does not use any ports, this function must return an empty BT::PortsList.
30
30
* This function returns a list of ports with their names and port info, which is used internally by the behavior tree.
31
-
* @return picknik_registration does not use expose any ports, so this function returns an empty list.
31
+
* @return See ndt_registration.cpp for port list and description.
32
32
*/
33
33
static BT::PortsList providedPorts();
34
34
@@ -52,4 +52,4 @@ class NDTRegistration : public moveit_studio::behaviors::AsyncBehaviorBase
52
52
/** @brief Classes derived from AsyncBehaviorBase must have this shared_future as a class member */
@@ -16,7 +16,7 @@ class RANSACRegistration : public moveit_studio::behaviors::AsyncBehaviorBase
16
16
{
17
17
public:
18
18
/**
19
-
* @brief Constructor for the picknik_registration behavior.
19
+
* @brief Constructor for the behavior.
20
20
* @param name The name of a particular instance of this Behavior. This will be set by the behavior tree factory when this Behavior is created within a new behavior tree.
21
21
* @param shared_resources A shared_ptr to a BehaviorContext that is shared among all SharedResourcesNode Behaviors in the behavior tree. This BehaviorContext is owned by the Studio Agent's ObjectiveServerNode.
22
22
* @param config This contains runtime configuration info for this Behavior, such as the mapping between the Behavior's data ports on the behavior tree's blackboard. This will be set by the behavior tree factory when this Behavior is created within a new behavior tree.
@@ -25,10 +25,10 @@ class RANSACRegistration : public moveit_studio::behaviors::AsyncBehaviorBase
* @brief Implementation of the required providedPorts() function for the picknik_registration Behavior.
28
+
* @brief Implementation of the required providedPorts() function for the Behavior.
29
29
* @details The BehaviorTree.CPP library requires that Behaviors must implement a static function named providedPorts() which defines their input and output ports. If the Behavior does not use any ports, this function must return an empty BT::PortsList.
30
30
* This function returns a list of ports with their names and port info, which is used internally by the behavior tree.
31
-
* @return picknik_registration does not use expose any ports, so this function returns an empty list.
31
+
* @return See ransac_registration.cpp for port list and description.
32
32
*/
33
33
static BT::PortsList providedPorts();
34
34
@@ -52,4 +52,4 @@ class RANSACRegistration : public moveit_studio::behaviors::AsyncBehaviorBase
52
52
/** @brief Classes derived from AsyncBehaviorBase must have this shared_future as a class member */
0 commit comments