ADORe
ADORe is a modular open source software library and toolkit for decision making, planning, control and simulation of automated vehicles
setpoint.h
Go to the documentation of this file.
1 /********************************************************************************
2  * Copyright (C) 2017-2020 German Aerospace Center (DLR).
3  * Eclipse ADORe, Automated Driving Open Research https://eclipse.org/adore
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License 2.0 which is available at
7  * http://www.eclipse.org/legal/epl-2.0.
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  * Daniel Heß - initial API and implementation
13  ********************************************************************************/
14 
15 #pragma once
16 
18 
19 namespace adore
20 {
21  namespace fun
22  {
29  class SetPoint
30  {
31  public:
34  double tStart;
35  double tEnd;
39  {
40  maneuverID = 0;
41  }
42  virtual ~SetPoint()
43  {
44 
45  }
47  {
49  x.copyFromPlanar(x0ref);
50  x.setTime(tStart);
51  return x;
52  }
53  };
54  }
55 }
Definition: setpoint.h:30
PlanarVehicleState10d x0ref
Definition: setpoint.h:32
double tStart
Definition: setpoint.h:34
SetPoint()
Definition: setpoint.h:38
int maneuverID
Definition: setpoint.h:36
double tEnd
Definition: setpoint.h:35
VehicleMotionState9d toMotionState() const
Definition: setpoint.h:46
virtual ~SetPoint()
Definition: setpoint.h:42
x
Definition: adore_set_goal.py:30
Definition: areaofeffectconverter.h:20
This struct holds the motion state of the vehicle in 9d.
Definition: vehiclemotionstate9d.h:39
Definition: planarvehiclestate10d.h:41