GPLIB++
MTInvConf.h
Go to the documentation of this file.
1 //============================================================================
2 // Name : MTInvConf.h
3 // Author : Apr 8, 2010
4 // Version :
5 // Copyright : 2010, mmoorkamp
6 //============================================================================
7 
8 
9 #ifndef MTINVCONF_H_
10 #define MTINVCONF_H_
11 
12 #include <string>
13 #include <fstream>
14 
15 namespace gplib
16  {
17 
18  class MTInvConf
19  {
20  public:
22  double tensorerror;
23  double reserror;
24  double phaseerror;
25  double surferror;
26  std::string mode;
27  std::string mtfit;
28  std::string mtinputdata;
29  void GetData(std::ifstream &instream);
30  MTInvConf();
31  virtual ~MTInvConf();
32  };
33 
34  }
35 
36 #endif /* MTINVCONF_H_ */
double reserror
Definition: MTInvConf.h:23
double tensorerror
Definition: MTInvConf.h:22
double phaseerror
Definition: MTInvConf.h:24
virtual ~MTInvConf()
Definition: MTInvConf.cpp:19
void GetData(std::ifstream &instream)
Definition: MTInvConf.cpp:25
std::string mtfit
Definition: MTInvConf.h:27
double surferror
Definition: MTInvConf.h:25
std::string mode
Definition: MTInvConf.h:26
std::string mtinputdata
Definition: MTInvConf.h:28