diff --git a/awsim_sensor_kit_launch/launch/lidar.launch.xml b/awsim_sensor_kit_launch/launch/lidar.launch.xml
index 417117c..58abe01 100644
--- a/awsim_sensor_kit_launch/launch/lidar.launch.xml
+++ b/awsim_sensor_kit_launch/launch/lidar.launch.xml
@@ -37,7 +37,7 @@
-
+
diff --git a/awsim_sensor_kit_launch/launch/pointcloud_preprocessor.launch.py b/awsim_sensor_kit_launch/launch/pointcloud_preprocessor.launch.py
index eb1c9a2..456dc27 100644
--- a/awsim_sensor_kit_launch/launch/pointcloud_preprocessor.launch.py
+++ b/awsim_sensor_kit_launch/launch/pointcloud_preprocessor.launch.py
@@ -53,7 +53,7 @@ def launch_setup(context, *args, **kwargs):
# set container to run all required components in the same process
container = ComposableNodeContainer(
- name=LaunchConfiguration("container_name"),
+ name=LaunchConfiguration("individual_container_name"),
namespace="",
package="rclcpp_components",
executable=LaunchConfiguration("container_executable"),
@@ -65,7 +65,7 @@ def launch_setup(context, *args, **kwargs):
target_container = (
container
if UnlessCondition(LaunchConfiguration("use_pointcloud_container")).evaluate(context)
- else LaunchConfiguration("container_name")
+ else LaunchConfiguration("pointcloud_container_name")
)
# load concat or passthrough filter
@@ -89,7 +89,8 @@ def add_launch_arg(name: str, default_value=None):
add_launch_arg("use_multithread", "False")
add_launch_arg("use_intra_process", "False")
add_launch_arg("use_pointcloud_container", "False")
- add_launch_arg("container_name", "pointcloud_preprocessor_container")
+ add_launch_arg("pointcloud_container_name", "pointcloud_container")
+ add_launch_arg("individual_container_name", "concatenate_container")
set_container_executable = SetLaunchConfiguration(
"container_executable",