blob: ffd1fc26592d91e540a4409445c40508db42f5f6 [file] [log] [blame]
Patrick Venturec32e3fc2019-02-28 10:01:11 -08001#pragma once
2
3#include <string>
4
Patrick Venturede79ee02019-05-08 14:50:00 -07005/** Boolean variable controlling whether tuning is enabled
Patrick Venturec32e3fc2019-02-28 10:01:11 -08006 * during this run.
7 */
Patrick Venturede79ee02019-05-08 14:50:00 -07008extern bool tuningEnabled;
Josh Lehande745422020-11-07 02:14:09 -08009
Patrick Venturede79ee02019-05-08 14:50:00 -070010/** String variable with the folder for writing logs if logging is enabled.
11 */
12extern std::string loggingPath;
13/** Boolean variable whether loggingPath is non-empty. */
14extern bool loggingEnabled;
Bonnie Loc51ba912022-10-12 14:07:22 +080015
16/** Boolean variable controlling whether debug mode is enabled
17 * during this run.
18 */
19extern bool debugEnabled;
Josh Lehande745422020-11-07 02:14:09 -080020
21/** Boolean variable enabling logging of computations made at the core of
22 * the PID loop.
23 */
24extern bool coreLoggingEnabled;