File tree 7 files changed +20
-20
lines changed
planning/static_centerline_generator/src
7 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #ifndef STATIC_CENTERLINE_GENERATOR__CENTERLINE_SOURCE__BAG_EGO_TRAJECTORY_BASED_CENTERLINE_HPP_
16
- #define STATIC_CENTERLINE_GENERATOR__CENTERLINE_SOURCE__BAG_EGO_TRAJECTORY_BASED_CENTERLINE_HPP_
15
+ #ifndef CENTERLINE_SOURCE__BAG_EGO_TRAJECTORY_BASED_CENTERLINE_HPP_
16
+ #define CENTERLINE_SOURCE__BAG_EGO_TRAJECTORY_BASED_CENTERLINE_HPP_
17
17
18
18
#include " rclcpp/rclcpp.hpp"
19
19
#include " type_alias.hpp"
@@ -24,4 +24,4 @@ namespace autoware::static_centerline_generator
24
24
{
25
25
std::vector<TrajectoryPoint> generate_centerline_with_bag (rclcpp::Node & node);
26
26
} // namespace autoware::static_centerline_generator
27
- #endif // STATIC_CENTERLINE_GENERATOR__CENTERLINE_SOURCE__BAG_EGO_TRAJECTORY_BASED_CENTERLINE_HPP_
27
+ #endif // CENTERLINE_SOURCE__BAG_EGO_TRAJECTORY_BASED_CENTERLINE_HPP_
Original file line number Diff line number Diff line change 19
19
#include " obstacle_avoidance_planner/node.hpp"
20
20
#include " path_smoother/elastic_band_smoother.hpp"
21
21
#include " static_centerline_generator_node.hpp"
22
- #include " utils.hpp"
23
22
#include " tier4_autoware_utils/ros/parameter.hpp"
23
+ #include " utils.hpp"
24
24
25
25
namespace autoware ::static_centerline_generator
26
26
{
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #ifndef STATIC_CENTERLINE_GENERATOR__CENTERLINE_SOURCE__OPTIMIZATION_TRAJECTORY_BASED_CENTERLINE_HPP_ // NOLINT
16
- #define STATIC_CENTERLINE_GENERATOR__CENTERLINE_SOURCE__OPTIMIZATION_TRAJECTORY_BASED_CENTERLINE_HPP_ // NOLINT
15
+ #ifndef CENTERLINE_SOURCE__OPTIMIZATION_TRAJECTORY_BASED_CENTERLINE_HPP_ // NOLINT
16
+ #define CENTERLINE_SOURCE__OPTIMIZATION_TRAJECTORY_BASED_CENTERLINE_HPP_ // NOLINT
17
17
18
18
#include " rclcpp/rclcpp.hpp"
19
19
#include " type_alias.hpp"
@@ -39,5 +39,5 @@ class OptimizationTrajectoryBasedCenterline
39
39
};
40
40
} // namespace autoware::static_centerline_generator
41
41
// clang-format off
42
- #endif // STATIC_CENTERLINE_GENERATOR__CENTERLINE_SOURCE__OPTIMIZATION_TRAJECTORY_BASED_CENTERLINE_HPP_ // NOLINT
42
+ #endif // CENTERLINE_SOURCE__OPTIMIZATION_TRAJECTORY_BASED_CENTERLINE_HPP_ // NOLINT
43
43
// clang-format on
Original file line number Diff line number Diff line change 15
15
#include " static_centerline_generator_node.hpp"
16
16
17
17
#include " autoware_static_centerline_generator/msg/points_with_lane_id.hpp"
18
+ #include " centerline_source/bag_ego_trajectory_based_centerline.hpp"
18
19
#include " lanelet2_extension/utility/message_conversion.hpp"
19
20
#include " lanelet2_extension/utility/query.hpp"
20
21
#include " lanelet2_extension/utility/utilities.hpp"
21
22
#include " map_loader/lanelet2_map_loader_node.hpp"
22
23
#include " map_projection_loader/load_info_from_lanelet2_map.hpp"
23
24
#include " motion_utils/resample/resample.hpp"
24
25
#include " motion_utils/trajectory/conversion.hpp"
25
- #include " centerline_source/bag_ego_trajectory_based_centerline.hpp"
26
- #include " type_alias.hpp"
27
- #include " utils.hpp"
28
26
#include " tier4_autoware_utils/geometry/geometry.hpp"
29
27
#include " tier4_autoware_utils/ros/parameter.hpp"
28
+ #include " type_alias.hpp"
29
+ #include " utils.hpp"
30
30
31
31
#include < geography_utils/lanelet2_projector.hpp>
32
32
#include < mission_planner/mission_planner_plugin.hpp>
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #ifndef STATIC_CENTERLINE_GENERATOR__STATIC_CENTERLINE_GENERATOR_NODE_HPP_
16
- #define STATIC_CENTERLINE_GENERATOR__STATIC_CENTERLINE_GENERATOR_NODE_HPP_
15
+ #ifndef STATIC_CENTERLINE_GENERATOR_NODE_HPP_
16
+ #define STATIC_CENTERLINE_GENERATOR_NODE_HPP_
17
17
18
18
#include " autoware_static_centerline_generator/srv/load_map.hpp"
19
19
#include " autoware_static_centerline_generator/srv/plan_path.hpp"
20
20
#include " autoware_static_centerline_generator/srv/plan_route.hpp"
21
- #include " rclcpp/rclcpp.hpp"
22
21
#include " centerline_source/optimization_trajectory_based_centerline.hpp"
22
+ #include " rclcpp/rclcpp.hpp"
23
23
#include " type_alias.hpp"
24
24
#include " vehicle_info_util/vehicle_info_util.hpp"
25
25
@@ -116,4 +116,4 @@ class StaticCenterlineGeneratorNode : public rclcpp::Node
116
116
vehicle_info_util::VehicleInfo vehicle_info_;
117
117
};
118
118
} // namespace autoware::static_centerline_generator
119
- #endif // STATIC_CENTERLINE_GENERATOR__STATIC_CENTERLINE_GENERATOR_NODE_HPP_
119
+ #endif // STATIC_CENTERLINE_GENERATOR_NODE_HPP_
Original file line number Diff line number Diff line change 11
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
- #ifndef STATIC_CENTERLINE_GENERATOR__TYPE_ALIAS_HPP_
15
- #define STATIC_CENTERLINE_GENERATOR__TYPE_ALIAS_HPP_
14
+ #ifndef TYPE_ALIAS_HPP_
15
+ #define TYPE_ALIAS_HPP_
16
16
17
17
#include " route_handler/route_handler.hpp"
18
18
#include " tier4_autoware_utils/geometry/geometry.hpp"
@@ -43,4 +43,4 @@ using tier4_autoware_utils::Point2d;
43
43
using visualization_msgs::msg::MarkerArray;
44
44
} // namespace autoware::static_centerline_generator
45
45
46
- #endif // STATIC_CENTERLINE_GENERATOR__TYPE_ALIAS_HPP_
46
+ #endif // TYPE_ALIAS_HPP_
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #ifndef STATIC_CENTERLINE_GENERATOR__UTILS_HPP_
16
- #define STATIC_CENTERLINE_GENERATOR__UTILS_HPP_
15
+ #ifndef UTILS_HPP_
16
+ #define UTILS_HPP_
17
17
18
18
#include " route_handler/route_handler.hpp"
19
19
#include " type_alias.hpp"
@@ -55,4 +55,4 @@ MarkerArray create_distance_text_marker(
55
55
} // namespace utils
56
56
} // namespace autoware::static_centerline_generator
57
57
58
- #endif // STATIC_CENTERLINE_GENERATOR__UTILS_HPP_
58
+ #endif // UTILS_HPP_
You can’t perform that action at this time.
0 commit comments