Feellgood
tags.h
1 #ifndef tags_h
2 #define tags_h
3 
7 void on_fail_msg_error(std::ifstream &f_in, const std::string strWhat);
8 
9 namespace tags
10  {
11  namespace sol
12  {
13  const std::string time = "## time:";
14  const std::string rw_time = "## real-world time:";
15  const std::string columns = "## columns:";
16  }
17 
18  namespace evol
19  {
20  const std::string version = "## feeLLGood version:";
21  const std::string hostname = "## hostname:";
22  const std::string rw_time = "## real-world time:";
23  const std::string settings_file = "## settings file:";
24  const std::string columns = "## columns:";
25  }
26 
27  namespace msh
28  {
29  const int DIM_OBJ_2D = 2;
30  const int DIM_OBJ_3D = 3;
31 
32  const int TYP_ELEM_TRIANGLE = 2;
33  const int TYP_ELEM_TETRAEDRON = 4;
34 
35  const int SIZE_TRIANGLE = 3;
36  const int SIZE_TETRAEDRON = 4;
37  }
38  } // end namespace tags
39 
40 #endif