ZStatsMode.hpp
1 #ifndef OPALS_Z_STATS_MODE_HPP_INCLUDED
2 #define OPALS_Z_STATS_MODE_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// TODO: Enumerator for what?
9  namespace ZStatsMode
10  {
11  enum Type
12  {
13  horizontalPlane , ///< Use signed distances to a horizontal plane within the current point for statistics computation
14  tiltedPlane , ///< Use signed distances to a titled plane within the current point based on its normal vector for statistics computation
15  Count ///< number of elements
16  };
17  }
18 }
19 
20 #endif