Carma-platform v4.11.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.
stop_and_dwell_strategic_plugin Namespace Reference

Namespaces

namespace  anonymous_namespace{stop_and_dwell_strategic_plugin.cpp}
 

Classes

class  StopAndDwellStrategicPlugin
 
struct  StopAndDwellStrategicPluginConfig
 Struct to store the configuration settings for the WzStrategicPlugin class. More...
 
struct  VehicleState
 Struct representing a vehicle state for the purposes of planning. More...
 

Functions

def generate_launch_description ()
 

Function Documentation

◆ generate_launch_description()

def stop_and_dwell_strategic_plugin.generate_launch_description ( )

Definition at line 29 of file stop_and_dwell_strategic_plugin.launch.py.

30
31 stop_and_dwell_strategic_plugin_file_path = os.path.join(
32 get_package_share_directory('stop_and_dwell_strategic_plugin'), 'config/parameters.yaml')
33
34 # Launch node(s) in a carma container to allow logging to be configured
35 container = ComposableNodeContainer(
36 package='carma_ros2_utils',
37 name='stop_and_dwell_strategic_plugin_container',
38 namespace=GetCurrentNamespace(),
39 executable='carma_component_container_mt',
40 composable_node_descriptions=[
41
42 # Launch the core node(s)
43 ComposableNode(
44 package='stop_and_dwell_strategic_plugin',
45 plugin='stop_and_dwell_strategic_plugin::StopAndDwellStrategicPlugin',
46 name='stop_and_dwell_strategic_plugin_node',
47 extra_arguments=[
48 {'use_intra_process_comms': True},
49 ],
50 parameters=[
51 stop_and_dwell_strategic_plugin_file_path
52 ]
53 ),
54 ]
55 )
56
57 return LaunchDescription([
58 container
59 ])