LSMProcMode.hpp
1 #ifndef OPALS_L_S_M_PROC_MODE_HPP_INCLUDED
2 #define OPALS_L_S_M_PROC_MODE_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// TODO: Enumerator for what?
9  namespace LSMProcMode
10  {
11  enum Type
12  {
13  local , ///< LSM for a set of patches (xy position and patch size)
14  continuous , ///< LSM for patches sliding along the flight path (patch length and overlap)
15  global , ///< LSM for entire overlap area
16  Count ///< number of elements
17  };
18  }
19 }
20 
21 #endif