GPLIB++
CCalcRecConf.h
Go to the documentation of this file.
1  #include <string>
2  #include "CCalcRecConfParser.hpp"
3  #include "CCalcRecConfLexer.hpp"
4 
5  class CCalcRecConf{
6 public:
7 void GetData(std::ifstream &instream);
8 void GetData(std::string filename);
9 void WriteData(std::ofstream &outstream);
10 void WriteData(std::string filename);
11 double cc;
12 double sigma;
13 int shift;
14 std::string recmethod;
15 bool normalize;
16 CCalcRecConf(std::string filename){GetData(filename);}
18 };
CCalcRecConf(std::string filename)
Definition: CCalcRecConf.h:16
std::string recmethod
Definition: CCalcRecConf.h:14
double sigma
Definition: CCalcRecConf.h:12
void WriteData(std::ofstream &outstream)
void GetData(std::ifstream &instream)