constants.h
Go to the documentation of this file.
1/**
2 * This file is part of ArmarX.
3 *
4 * ArmarX is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * ArmarX is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * @author Fabian Reister ( fabian dot reister at kit dot edu )
17 * @date 2022
18 * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
19 * GNU General Public License
20 */
21
22#pragma once
23
24#include <string>
25
27{
28 // memory name
29 inline constexpr const char* NavigationMemoryName = "Navigation";
30
31 // core segment names
32 inline constexpr const char* ParameterizationCoreSegmentName = "Parameterization";
33 inline constexpr const char* EventsCoreSegmentName = "Events";
34 inline constexpr const char* GraphCoreSegmentName = "Graph";
35 inline constexpr const char* LocationCoreSegmentName = "Location";
36 inline constexpr const char* CostmapCoreSegmentName = "Costmap";
37 inline constexpr const char* Costmap3DCoreSegmentName = "Costmap3D";
38 inline constexpr const char* HumanCoreSegmentName = "Human";
39 inline constexpr const char* LaserScannerFeaturesCoreSegment = "LaserScannerFeatures";
40 inline constexpr const char* ExceptionsCoreSegmentName = "Exceptions";
41
42 inline constexpr const char* GlobalPlannerResultCoreSegment = "Results_GlobalPlanner";
43 inline constexpr const char* LocalPlannerResultCoreSegment = "Results_LocalPlanner";
44 inline constexpr const char* RoomsCoreSegmentName = "Rooms";
45
46} // namespace armarx::navigation::memory::constants
This file is part of ArmarX.
Definition constants.h:27
constexpr const char * GlobalPlannerResultCoreSegment
Definition constants.h:42
constexpr const char * LocationCoreSegmentName
Definition constants.h:35
constexpr const char * EventsCoreSegmentName
Definition constants.h:33
constexpr const char * GraphCoreSegmentName
Definition constants.h:34
constexpr const char * LaserScannerFeaturesCoreSegment
Definition constants.h:39
constexpr const char * RoomsCoreSegmentName
Definition constants.h:44
constexpr const char * Costmap3DCoreSegmentName
Definition constants.h:37
constexpr const char * ParameterizationCoreSegmentName
Definition constants.h:32
constexpr const char * HumanCoreSegmentName
Definition constants.h:38
constexpr const char * LocalPlannerResultCoreSegment
Definition constants.h:43
constexpr const char * ExceptionsCoreSegmentName
Definition constants.h:40
constexpr const char * CostmapCoreSegmentName
Definition constants.h:36
constexpr const char * NavigationMemoryName
Definition constants.h:29