Bridge++  Version 1.5.4
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
bridge_defs.h
Go to the documentation of this file.
1 
14 #ifndef DEFS_INCLUDED
15 #define DEFS_INCLUDED
16 
17 #include <string>
18 
19 // for debug
20 //#define LOG printf(">>> %s\n", __PRETTY_FUNCTION__)
21 #define LOG
22 
23 // direction label
25 {
26  XDIR = 0,
27  YDIR = 1,
28  ZDIR = 2,
29  TDIR = 3,
30  WDIR = 4
31 };
32 
34 {
35  Forward = 1, // +mu
36  Backward = -1 // -mu
37 };
38 
39 namespace Element_type
40 {
41  enum type
42  {
43  REAL = 1, COMPLEX = 2
44  };
45 }
46 
47 #endif /* DEFS_INCLUDED */
ForwardBackward
Definition: bridge_defs.h:33
Direction
Definition: bridge_defs.h:24