NormalsMetaInfo.hpp
1 #ifndef OPALS_NORMALS_META_INFO_HPP_INCLUDED
2 #define OPALS_NORMALS_META_INFO_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// TODO: Enumerator for what?
9  namespace NormalsMetaInfo
10  {
11  enum Type
12  {
13  minimum , ///< Storage of normal vector, sigma0 and estimtation method
14  medium , ///< Storage of 'minimum' infos, eigenvalues, nr. of given points and nr. of used points
15  maximum , ///< Storage of 'medium' infos, eigenvektor matrix
16  Count ///< number of elements
17  };
18  }
19 }
20 
21 #endif