-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConfigure.h
executable file
·41 lines (28 loc) · 960 Bytes
/
Configure.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
//**.****|****.****|****.****|****.****|****.****|****.****|****.****|****.****|
// * Configure.h * galprop package * 4/14/2000
//**"****!****"****!****"****!****"****!****"****!****"****!****"****!****"****|
#ifndef Configure_h
#define Configure_h
#include<string> //IMOS20020112
namespace gp {
class Configure {
public:
std::string fGaldefDirectory;
std::string fFITSDataDirectory;
//std::string adjunct_directory;
std::string fOutputDirectory;
std::string fOutputPrefix;
std::string fVersion;
std::string fGlobalDataPath;
//char *galdef_directory;
//char *fits_directory;
//char *adjunct_directory;
//int directory_length;
//interface function prototype
int init(const std::string& galdefDirectory,
const std::string& fitsDataDirectory,
const std::string& outputDirectory,
const std::string& outputPrefix);
};
}
#endif