API
 
Loading...
Searching...
No Matches
environment.hpp
Go to the documentation of this file.
1/** \file environment.hpp
2 * \brief Environment variables for the MagAO-X library
3 * \author Jared R. Males (jaredmales@gmail.com)
4 *
5 * History:
6 * - 2018-01-05 created by JRM
7 */
8
9#ifndef common_environment_hpp
10#define common_environment_hpp
11
12/** \defgroup env_var Environment Variables
13 * \ingroup common
14 *
15 * @{
16 */
17
18#ifndef MAGAOX_env_path
19 /// Environment variable setting the MagAO-X path.
20 #define MAGAOX_env_path "MagAOX_PATH"
21#endif
22
23#ifndef MAGAOX_env_config
24 /// Environment variable setting the relative config path.
25 #define MAGAOX_env_config "MagAOX_CONFIG"
26#endif
27
28#ifndef MAGAOX_env_calib
29 /// Environment variable setting the relative calib path.
30 #define MAGAOX_env_calib "MagAOX_CALIB"
31#endif
32
33#ifndef MAGAOX_env_cpuset
34 /// Environment variable setting the relative calib path.
35 #define MAGAOX_env_cpuset "CGROUPS1_CPUSET_MOUNTPOINT"
36#endif
37
38
39///@}
40
41
42#endif //common_environment_hpp