Apollo
10.0
自动驾驶开放平台
piecewise_jerk_speed_optimizer.h
浏览该文件的文档.
1
/******************************************************************************
2
* Copyright 2019 The Apollo Authors. All Rights Reserved.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
6
* You may obtain a copy of 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,
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
15
*****************************************************************************/
16
21
#pragma once
22
23
#include <memory>
24
#include <string>
25
#include <utility>
26
#include <vector>
27
#include "modules/planning/tasks/piecewise_jerk_speed/proto/piecewise_jerk_speed.pb.h"
28
#include "
cyber/plugin_manager/plugin_manager.h
"
29
#include "
modules/planning/planning_interface_base/task_base/common/speed_optimizer.h
"
30
31
namespace
apollo
{
32
namespace
planning
{
33
34
class
PiecewiseJerkSpeedOptimizer
:
public
SpeedOptimizer
{
35
public
:
36
bool
Init
(
const
std::string& config_dir,
const
std::string& name,
37
const
std::shared_ptr<DependencyInjector>& injector)
override
;
38
39
virtual
~PiecewiseJerkSpeedOptimizer
() =
default
;
40
41
private
:
42
common::Status
Process(
const
PathData
& path_data,
43
const
common::TrajectoryPoint
& init_point,
44
SpeedData
*
const
speed_data)
override
;
45
void
AdjustInitStatus(
46
const
std::vector<std::pair<double, double>> s_dot_bound,
double
delta_t,
47
std::array<double, 3>& init_s);
48
PiecewiseJerkSpeedOptimizerConfig
config_;
49
};
50
51
CYBER_PLUGIN_MANAGER_REGISTER_PLUGIN
(
52
apollo::planning::PiecewiseJerkSpeedOptimizer
,
Task
)
53
54
}
// namespace planning
55
}
// namespace apollo
apollo::common::Status
A general class to denote the return status of an API call.
Definition
status.h:43
apollo::planning::PathData
Definition
path_data.h:36
apollo::planning::PiecewiseJerkSpeedOptimizer
Definition
piecewise_jerk_speed_optimizer.h:34
apollo::planning::PiecewiseJerkSpeedOptimizer::~PiecewiseJerkSpeedOptimizer
virtual ~PiecewiseJerkSpeedOptimizer()=default
apollo::planning::PiecewiseJerkSpeedOptimizer::Init
bool Init(const std::string &config_dir, const std::string &name, const std::shared_ptr< DependencyInjector > &injector) override
Definition
piecewise_jerk_speed_optimizer.cc:44
apollo::planning::SpeedData
Definition
speed_data.h:30
apollo::planning::SpeedOptimizer
Definition
speed_optimizer.h:31
apollo::planning::Task
Definition
task.h:37
planning
Planning module main class.
plugin_manager.h
CYBER_PLUGIN_MANAGER_REGISTER_PLUGIN
#define CYBER_PLUGIN_MANAGER_REGISTER_PLUGIN(name, base)
Definition
plugin_manager.h:272
apollo
class register implement
Definition
arena_queue.h:37
speed_optimizer.h
apollo::common::TrajectoryPoint
Definition
pnc_point.proto:61
apollo::planning::PiecewiseJerkSpeedOptimizerConfig
Definition
piecewise_jerk_speed.proto:8
modules
planning
tasks
piecewise_jerk_speed
piecewise_jerk_speed_optimizer.h