-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTestDetailedSubstrate.h
53 lines (43 loc) · 1.6 KB
/
TestDetailedSubstrate.h
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
45
46
47
48
49
50
51
52
53
//---------------------------------------------------------------------------
// TestDetailedSubstrate
//---------------------------------------------------------------------------
#if !defined(TestDetailedSubstrate_H)
#define TestDetailedSubstrate_H
class clGrid;
/**
* Verifies the substrate proportions for timestep 1 of TestSubstrateRun1().
*/
void VerifyDetailedSubstrateRun1TS1Proportions(clGrid *p_oSubstrateGrid);
/**
* Verifies the substrate proportions for timestep 2 of TestSubstrateRun1().
*/
void VerifyDetailedSubstrateRun1TS2Proportions(clGrid *p_oSubstrateGrid);
/**
* Verifies the substrate proportions for timestep 3 of TestSubstrateRun1().
*/
void VerifyDetailedSubstrateRun1TS3Proportions(clGrid *p_oSubstrateGrid);
/**
* Verifies the substrate proportions for timestep 4 of TestSubstrateRun1().
*/
void VerifyDetailedSubstrateRun1TS4Proportions(clGrid *p_oSubstrateGrid);
/**
* Verifies the substrate proportions for timestep 1 of TestSubstrateRun2().
*/
void VerifyDetailedSubstrateRun2TS1Proportions(clGrid *p_oSubstrateGrid);
/**
* Writes a parameter file for testing grid setup and normal processing runs 1 and 2.
* @return Filename written.
*/
const char* WriteDetailedSubstrateXMLFile1(int iYearsPerTS);
/**
* Writes a file for testing grid setup with map files.
* @return Filename written.
*/
const char* WriteDetailedSubstrateXMLFile2();
/**
* Writes a parameter file for testing new substrate inputs.
* @return Filename written.
*/
const char* WriteDetailedSubstrateXMLFile3();
//---------------------------------------------------------------------------
#endif // TestSubstrate