EchoRatioMode.hpp
1 #ifndef OPALS_ECHO_RATIO_MODE_HPP_INCLUDED
2 #define OPALS_ECHO_RATIO_MODE_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// Enumerator defining different types of EchoRatio computation (used by opalsEchoRatio)
9  namespace EchoRatioMode
10  {
11  enum Type
12  {
13  basic , ///< basic echo ratio (# neighb. 3D / # neighb. 2D * 100)
14  slopeAdaptive , ///< slope adaptive echo ratio (slope based extension of 3D radius) if slope available, basic e.r. otherwise
15  Count ///< number of elements
16  };
17  }
18 }
19 
20 #endif