-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathST_globals.h
More file actions
44 lines (37 loc) · 1.11 KB
/
ST_globals.h
File metadata and controls
44 lines (37 loc) · 1.11 KB
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
35
36
37
38
39
40
41
42
43
44
/**
* \file ST_globals.h
* \brief Defines the globally available variables.
*
* Defines the globally available variables to access/manipulate the various
* "objects". Except for \ref ST_main.c, all modules requiring access to a
* global variable will reference this file. \ref ST_main.c module actually
* declares these variables.
*
* \author CWB (initial programming)
* \date 15 June 2000
* \author Chandler Haukap (changed all variables to pointers)
* \date August 2019
* \ingroup STEPPE
*/
#ifndef GLOBALS_H
#define GLOBALS_H
#include "ST_defines.h"
#include "ST_functions.h"
#include "sw_src/include/SW_datastructs.h"
extern SpeciesType **Species;
extern GroupType **RGroup;
extern SucculentType *Succulent;
extern EnvType *Env;
extern PlotType *Plot;
extern ModelType *Globals;
extern BmassFlagsType BmassFlags;
extern BmassQMType BmassQM;
extern MortFlagsType MortFlags;
extern GlobalType SuperGlobals;
extern SW_DOMAIN SoilWatDomain;
extern SW_RUN SoilWatRun;
extern LOG_INFO LogInfo;
extern LOG_INFO LogInfoSW;
extern Bool UseGrid;
extern Bool UseProgressBar;
#endif