SearchMode.hpp
1 #ifndef OPALS_SEARCH_MODE_HPP_INCLUDED
2 #define OPALS_SEARCH_MODE_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// TODO: Enumerator for what?
9  namespace SearchMode
10  {
11  enum Type
12  {
13  d2 , ///< Search based on 2D coordinates (x and y) only
14  d3 , ///< Search based on full 3D coordinates (x,y and z)
15  d2_5 , ///< Search based on 3D coordinates but with different horizontal and vertical scales
16  Count ///< number of elements
17  };
18  }
19 }
20 
21 #endif