perception_interfaces 1.1.2
Loading...
Searching...
No Matches
constants.h
Go to the documentation of this file.
1// Copyright Institute for Automotive Engineering (ika), RWTH Aachen University
2// SPDX-License-Identifier: MIT
3
9#pragma once
10
11#include <cmath>
12#include <limits>
13
14
15namespace perception_msgs {
16
17namespace object_access {
18
19 const double CONTINUOUS_STATE_INIT = 0;
20
21 const long int DISCRETE_STATE_INIT = 0;
22
23 const double CONTINUOUS_STATE_COVARIANCE_INIT = 0;
24 const double CONTINUOUS_STATE_COVARIANCE_INVALID = -1;
25 const double CONTINUOUS_STATE_COVARIANCE_UNKNOWN = std::numeric_limits<double>::max();
26
27} // namespace object_access
28
29} // namespace perception_msgs