Main Page
Module List
Reference documentation
Namespaces
Classes
Examples
distro
c++_api
inc
opals
ApplyTrafo.hpp
1
#ifndef OPALS_APPLY_TRAFO_HPP_INCLUDED
2
#define OPALS_APPLY_TRAFO_HPP_INCLUDED
3
4
#include <opals/config.hpp>
5
6
namespace
opals
7
{
8
/// TODO: Enumerator for what?
9
namespace
ApplyTrafo
10
{
11
enum
Type
12
{
13
first
,
///< apply transformation to the first grid before subtracting
14
second
,
///< apply transformation to the second grid before subtracting
15
Count
///< number of elements
16
};
17
}
18
}
19
20
#endif