-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTestGLIPoints.h
More file actions
68 lines (58 loc) · 1.67 KB
/
Copy pathTestGLIPoints.h
File metadata and controls
68 lines (58 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//---------------------------------------------------------------------------
#ifndef TestGLIPointsH
#define TestGLIPointsH
#include <fstream>
/**
* Writes a parameter file to direct testing. There is one species and one
* behavior: GLI points.
*
* @return Filename written.
*/
const char* WriteGLIPointsXMLFile1();
/**
* Writes a parameter file to direct testing. There is one species and one
* behavior: GLI points.
*
* @return Filename written.
*/
const char* WriteGLIPointsXMLRotateFile1();
/**
* Writes a parameter file to direct testing. There is one species and one
* behavior: GLI points.
*
* @return Filename written.
*/
const char* WriteGLIPointsXMLRotateFile2();
/**
* Writes a parameter file with no points in the points list.
* @return Filename written.
*/
const char* WriteGLIPointsXMLErrorFile1();
/**
* Writes a parameter file where the number of azimuth angles is less than 0.
* @return Filename written.
*/
const char* WriteGLIPointsXMLErrorFile2();
/**
* Writes a parameter file where the number of altitude angles is less than 0.
* @return Filename written.
*/
const char* WriteGLIPointsXMLErrorFile3();
/**
* Writes a parameter file where a point's X or Y coordinate is outside the
* plot.
* @return Filename written.
*/
const char* WriteGLIPointsXMLErrorFile4();
/**
* Writes a parameter file where a point's height is negative.
* @return Filename written.
*/
const char* WriteGLIPointsXMLErrorFile5();
/**
* Writes common parameters for the test parameter files.
* @param oOut File stream to write to.
*/
void WriteGLIPointsCommonStuff(std::fstream &oOut);
//---------------------------------------------------------------------------
#endif