constants.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
6
8{
9 /// Topic the low-level gaze controllers report their residual on.
10 inline const std::string GazeControllerStatusTopicName = "GazeControllerStatus";
11
12 /// Rate limit for those reports. `onPublish` runs at the RobotUnit's publish rate, which is
13 /// far more than the scheduler needs to debounce a "reached" decision.
16
17} // namespace armarx::view_selection::gaze_controller::constants
static Duration MilliSeconds(std::int64_t milliSeconds)
Constructs a duration in milliseconds.
Definition Duration.cpp:48
Represents a duration.
Definition Duration.h:17
const armarx::Duration GazeControllerStatusPublishInterval
Rate limit for those reports.
Definition constants.h:14
const std::string GazeControllerStatusTopicName
Topic the low-level gaze controllers report their residual on.
Definition constants.h:10