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.
frame_transformer_base.hpp
Go to the documentation of this file.
1#pragma once
2/*
3 * Copyright (C) 2021 LEIDOS.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18#include <string>
19#include <memory>
20#include <tf2_ros/buffer.h>
21
22namespace frame_transformer
23{
24
31 {
32
33 protected:
34
37
39 std::shared_ptr<tf2_ros::Buffer> buffer_;
40
42 std::shared_ptr<carma_ros2_utils::CarmaLifecycleNode> node_;
43
44 protected: // Protected to force super call in child classes
45 TransformerBase(const Config& config, std::shared_ptr<tf2_ros::Buffer> buffer, std::shared_ptr<carma_ros2_utils::CarmaLifecycleNode> node)
46 : config_(config), buffer_(buffer), node_(node) {}
47 };
48
49}
Transformer base class provides default member variables for tf2 lookup and ros network access....
std::shared_ptr< carma_ros2_utils::CarmaLifecycleNode > node_
Containing node which provides access to the ros network.
Config config_
Transformation configuration.
TransformerBase(const Config &config, std::shared_ptr< tf2_ros::Buffer > buffer, std::shared_ptr< carma_ros2_utils::CarmaLifecycleNode > node)
std::shared_ptr< tf2_ros::Buffer > buffer_
TF2 Buffer for storing transform history and looking up transforms.
Stuct containing the algorithm configuration values for frame_transformer.