-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.h
More file actions
34 lines (34 loc) · 954 Bytes
/
Copy pathoptions.h
File metadata and controls
34 lines (34 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifdef XY
#define GEOMETRY_OPTION "(1x,' * geometry XY')"
#endif
#ifdef RZ
#define GEOMETRY_OPTION "(1x,' * geometry RZ')"
#endif
#ifdef RT
#define GEOMETRY_OPTION "(1x,' * geometry RT')"
#endif
#ifdef GRAV
#define GRAVITY_OPTION "(1x,' * self-gravity ON ')"
#else
#define GRAVITY_OPTION "(1x,' * self-gravity OFF')"
#endif
#ifdef ROTATE
#define ROTATION_OPTION "(1x,' * rotation ON ')"
#else
#define ROTATION_OPTION "(1x,' * rotation OFF')"
#endif
#ifdef MHD
#define MHD_OPTION "(1x,' * magnetic fields ON ')"
#else
#define MHD_OPTION "(1x,' * magnetic fields OFF')"
#endif
#ifdef RAD
#define RADIATION_OPTION "(1x,' * radiation ON ')"
#else
#define RADIATION_OPTION "(1x,' * radiation OFF')"
#endif
#ifdef PYHYDRO
#define PYTHON_OPTION "(1x,' * py_connection ON ')"
#else
#define PYTHON_OPTION "(1x,' * py_connection OFF')"
#endif