calcMode.hpp
1 #ifndef OPALS_CALC_MODE_HPP_INCLUDED
2 #define OPALS_CALC_MODE_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// TODO: Enumerator for what?
9  namespace calcMode
10  {
11  enum Type
12  {
13  perimeter , ///< Calculate only the perimeter
14  area , ///< Calculate only the area
15  both , ///< Calculate perimeter and area
16  Count ///< number of elements
17  };
18  }
19 }
20 
21 #endif