-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTestGermination.h
More file actions
36 lines (29 loc) · 1.09 KB
/
TestGermination.h
File metadata and controls
36 lines (29 loc) · 1.09 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
//---------------------------------------------------------------------------
// TestGermination
//---------------------------------------------------------------------------
#if !defined(TestGermination_H)
#define TestGermination_H
class clGrid;
/** Verifies the seedling counts for TestGermination.
* @param p_oSeedGrid Dispersed seeds grid.
*/
void VerifyXMLFile1(clGrid * p_oSeedGrid);
/**
* Writes a parameter file to direct testing using the first set of testing
* conditions. This contains all tree information and disperse information.
* It also has a tree map so we'll be dealing with a known list of trees.
* @return Filename written.
*/
const char* WriteGerminationXMLFile1();
/**
* Writes a parameter file with a germination parameter less than 0.
* @return Filename written.
*/
const char* WriteGerminationXMLErrorFile1();
/**
* Writes a parameter file with a germination parameter greater than 1.
* @return Filename written.
*/
const char* WriteGerminationXMLErrorFile2();
//---------------------------------------------------------------------------
#endif // TestGermination_H