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  const std::string defaultColumnsTitle = "idx\tmx\tmy\tmz\tphi";
17  const std::string sColumnsTitle = "sx\tsy\tsz";
18  }
19 
20  namespace evol
21  {
22  const std::string version = "## feeLLGood version:";
23  const std::string hostname = "## hostname:";
24  const std::string rw_time = "## real-world time:";
25  const std::string settings_file = "## settings file:";
26  const std::string columns = "## columns:";
27  }
28 
29  namespace msh
30  {
31  const int DIM_OBJ_2D = 2;
32  const int DIM_OBJ_3D = 3;
33 
34  const int TYP_ELEM_TRIANGLE = 2;
35  const int TYP_ELEM_TETRAEDRON = 4;
36 
37  const int SIZE_TRIANGLE = 3;
38  const int SIZE_TETRAEDRON = 4;
39  }
40  } // end namespace tags
41 
42 #endif