@@ -130,7 +130,7 @@ BehaviorVelocityPlannerNode::BehaviorVelocityPlannerNode(const rclcpp::NodeOptio
130
130
std::bind (&BehaviorVelocityPlannerNode::on_unload_plugin, this , _1, _2));
131
131
132
132
// set velocity smoother param
133
- onParam ();
133
+ on_param ();
134
134
135
135
// Publishers
136
136
path_pub_ = this ->create_publisher <autoware_auto_planning_msgs::msg::Path>(" ~/output/path" , 1 );
@@ -307,9 +307,9 @@ void BehaviorVelocityPlannerNode::on_acceleration(
307
307
planner_data_.current_acceleration = msg;
308
308
}
309
309
310
- void BehaviorVelocityPlannerNode::onParam ()
310
+ void BehaviorVelocityPlannerNode::on_param ()
311
311
{
312
- // Note(VRichardJP): mutex lock is not necessary as onParam is only called once in the
312
+ // Note(VRichardJP): mutex lock is not necessary as on_param is only called once in the
313
313
// constructed. It would be required if it was a callback. std::lock_guard<std::mutex>
314
314
// lock(mutex_);
315
315
planner_data_.velocity_smoother_ =
@@ -398,20 +398,20 @@ void BehaviorVelocityPlannerNode::on_trigger(
398
398
}
399
399
400
400
const autoware_auto_planning_msgs::msg::Path output_path_msg =
401
- generatePath (input_path_msg, planner_data_);
401
+ generate_path (input_path_msg, planner_data_);
402
402
403
403
lk.unlock ();
404
404
405
405
path_pub_->publish (output_path_msg);
406
406
published_time_publisher_->publish_if_subscribed (path_pub_, output_path_msg.header .stamp );
407
- stop_reason_diag_pub_->publish (planner_manager_.getStopReasonDiag ());
407
+ stop_reason_diag_pub_->publish (planner_manager_.get_stop_reason_diag ());
408
408
409
409
if (debug_viz_pub_->get_subscription_count () > 0 ) {
410
410
publish_debug_marker (output_path_msg);
411
411
}
412
412
}
413
413
414
- autoware_auto_planning_msgs::msg::Path BehaviorVelocityPlannerNode::generatePath (
414
+ autoware_auto_planning_msgs::msg::Path BehaviorVelocityPlannerNode::generate_path (
415
415
const autoware_auto_planning_msgs::msg::PathWithLaneId::ConstSharedPtr input_path_msg,
416
416
const PlannerData & planner_data)
417
417
{
0 commit comments