-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTestEpiphyticEstablishment.h
51 lines (43 loc) · 1.52 KB
/
TestEpiphyticEstablishment.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
//---------------------------------------------------------------------------
// TestEpiphyticEstablishment
//---------------------------------------------------------------------------
#if !defined(TestEpiphyticEstablishment_H)
#define TestEpiphyticEstablishment_H
#include <fstream>
/**
* Writes a parameter file to direct testing for normal processing run one.
* @return Filename written.
*/
const char* WriteEpiphyticEstablishmentXMLFile1();
/**
* Writes a parameter file to direct testing for normal processing run two.
* @return Filename written.
*/
const char* WriteEpiphyticEstablishmentXMLFile2();
/**
* Writes a file where the number of altitude angles is less than 1.
* @return Filename written.
*/
const char* WriteEpiphyticEstablishmentXMLErrorFile1();
/**
* Writes a file where the number of azimuth angles is less than 1.
* @return Filename written.
*/
const char* WriteEpiphyticEstablishmentXMLErrorFile2();
/**
* Writes a file where the behavior is applied to seedlings.
* @return Filename written.
*/
const char* WriteEpiphyticEstablishmentXMLErrorFile3();
/**
* Writes a file where some of the trees don't have mortality applied.
* @return Filename written.
*/
const char* WriteEpiphyticEstablishmentXMLErrorFile4();
/**
* Writes common portions of the test parameter files.
* @param oOut File stream to write to.
*/
void WriteEpiphyticEstablishmentErrorCommonStuff(std::fstream &oOut);
//---------------------------------------------------------------------------
#endif // TestEpiphyticEstablishment_H