simulation_input_utils Last update: 16.07.2025 1 3 4#pragma once 5 6#include "core/service/parameter/simulation_parameters.h" 7#include <optional> 12namespace simulation_framework 13{ 14 19namespace autonomy 20{ 21 26namespace util 27{ 28 40std::optional<std::string> GetInputFileByName(const std::string& name, 41 const core::SimulationParameters& core_parameters); 42 51std::string GetInputOpenScenarioFilePath(const core::SimulationParameters& core_parameters); 52 60std::string GetGtGenUserSettingsFilePath(const core::SimulationParameters& core_parameters); 61 69std::string GetDriverInputFilePath(const core::SimulationParameters& core_parameters); 70 71} // namespace util 72} // namespace autonomy 73} // namespace simulation_framework autonomyThe namespace for all autonomy specific functionalities. simulation_frameworkThe top namespace for simulation framework. utilThe namespace for utilities under autonomy.