-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTestBrowsedRelativeGrowth.h
More file actions
52 lines (44 loc) · 1.45 KB
/
TestBrowsedRelativeGrowth.h
File metadata and controls
52 lines (44 loc) · 1.45 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
45
46
47
48
49
50
51
52
//---------------------------------------------------------------------------
// TestBrowsedRelativeGrowth
//---------------------------------------------------------------------------
#if !defined(TestBrowsedRelativeGrowth_H)
#define TestBrowsedRelativeGrowth_H
#include <fstream>
/**
* Writes a parameter file for normal run 1.
* @return Filename written.
*/
const char* WriteBrowsedRelativeGrowthXMLFile1();
/**
* Writes a parameter file for normal run 2.
* @return Filename written.
*/
const char* WriteBrowsedRelativeGrowthXMLFile2();
/**
* Writes a parameter file for normal run 3.
* @return Filename written.
*/
const char* WriteBrowsedRelativeGrowthXMLFile3();
/**
* Writes a parameter file where not all trees also have light.
* @return Filename written.
*/
const char* WriteBrowsedRelativeGrowthXMLErrorFile1();
/**
* Writes a parameter file where not all trees also have browsing.
* @return Filename written.
*/
const char* WriteBrowsedRelativeGrowthXMLErrorFile2();
/**
* Writes common portions of the test parameter files (tree pop, plot,
* etc).
* @param oOut File stream to write to.
*/
void WriteBrowsedRelativeGrowthPlotAndTrees(std::fstream &oOut);
/**
* Writes common parameters of the test parameter file.
* @param oOut File stream to write to.
*/
void WriteBrowsedRelativeGrowthCommonParameters(std::fstream &oOut);
//---------------------------------------------------------------------------
#endif // TestBrowsedRelativeGrowth_H