Carma-platform v4.2.0
CARMA Platform is built on robot operating system (ROS) and utilizes open source software (OSS) that enables Cooperative Driving Automation (CDA) features to allow Automated Driving Systems to interact and cooperate with infrastructure and other vehicles through communication.
trajectory_executor::Config Struct Reference

Struct containing the algorithm configuration values for trajectory_executor. More...

#include <trajectory_executor_config.hpp>

Collaboration diagram for trajectory_executor::Config:
Collaboration graph

Public Attributes

double trajectory_publish_rate = 10.0
 
std::string default_control_plugin = "pure_pursuit_wrapper_node"
 
std::string default_control_plugin_topic = "/guidance/plugins/pure_pursuit/plan_trajectory"
 

Friends

std::ostream & operator<< (std::ostream &output, const Config &c)
 

Detailed Description

Struct containing the algorithm configuration values for trajectory_executor.

Definition at line 25 of file trajectory_executor_config.hpp.

Friends And Related Function Documentation

◆ operator<<

std::ostream & operator<< ( std::ostream &  output,
const Config c 
)
friend

Definition at line 34 of file trajectory_executor_config.hpp.

35 {
36 output << "trajectory_executor::Config { " << std::endl
37 << "trajectory_publish_rate: " << c.trajectory_publish_rate << std::endl
38 << "default_control_plugin: " << c.default_control_plugin << std::endl
39 << "default_control_plugin_topic: " << c.default_control_plugin_topic << std::endl
40 << "}" << std::endl;
41 return output;
42 }

Member Data Documentation

◆ default_control_plugin

◆ default_control_plugin_topic

◆ trajectory_publish_rate


The documentation for this struct was generated from the following file: