00001 #include <string> 00002 #include "MakeInputConfParser.hpp" 00003 #include "MakeInputConfLexer.hpp" 00004 00005 class MakeInputConf{ 00006 public: 00007 void GetData(std::ifstream &instream); 00008 void GetData(std::string filename); 00009 void WriteData(std::ofstream &outstream); 00010 void WriteData(std::string filename); 00011 double slowness; 00012 double omega; 00013 double sigma; 00014 int shift; 00015 double cc; 00016 double poisson; 00017 int nlayers; 00018 std::string outputbase; 00019 bool correlated; 00020 double dt; 00021 int npts; 00022 MakeInputConf(std::string filename){GetData(filename);} 00023 MakeInputConf(){} 00024 };
1.5.8