GridResolution.hpp
1 #ifndef OPALS_GRID_RESOLUTION_HPP_INCLUDED
2 #define OPALS_GRID_RESOLUTION_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// Enumerator for specifying the (output) grid resolution depending on the size of the processing kernel
9  namespace GridResolution
10  {
11  enum Type
12  {
13  native , ///< output grid size equals native input grid size
14  halfKernel , ///< output grid size equals half kernel size
15  kernelSize , ///< output grid size equals entire kernel size
16  Count ///< number of elements
17  };
18  }
19 }
20 
21 #endif