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.
MockRadarDriver.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2020-2021 LEIDOS.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5 * use this file except in compliance with the License. You may obtain a copy of
6 * the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 * License for the specific language governing permissions and limitations under
14 * the License.
15 */
16
17#pragma once
18
20#include <radar_msgs/RadarStatus.h>
21#include <radar_msgs/RadarTrackArray.h>
22
23namespace mock_drivers
24{
27{
28private:
29 const std::string radar_status_topic_ = "radar/status";
30 const std::string radar_tracks_raw_topic_ = "radar/tracks_raw";
31
32protected:
33 int onRun() override;
34
35public:
36 MockRadarDriver(bool dummy = false);
38 std::vector<DriverType> getDriverTypes() override;
39 uint8_t getDriverStatus() override;
40 unsigned int getRate() override;
41};
42
43} // namespace mock_drivers
The template node for the mock drivers that will handle all of the default driver logic.
Definition: MockDriver.h:40
Mock Radar driver. Operates as a passthrough for bag data which updates the timestamps on received me...
uint8_t getDriverStatus() override
Pure Virtual method. Returns an integer value which corresponds to the cav_msgs/DriverStatus enum fel...
const std::string radar_tracks_raw_topic_
std::vector< DriverType > getDriverTypes() override
Pure Virtual method which child classes must override that returns the list of all driver types that ...
const std::string radar_status_topic_
int onRun() override
Pure virtual method which must be implemented by child classes. This method will be run once at start...
unsigned int getRate() override
Pure virtual method that returns the desired operational rate of a child class.