JAPAn
Just Another Parity Analyzer
|
Multi-dimensional grid interpolation methods. More...
#include <vector>
#include <fstream>
#include <iostream>
#include <stdexcept>
#include <stdint.h>
#include "QwLog.h"
Go to the source code of this file.
Data Structures | |
class | QwInterpolator< value_t, value_n > |
A multi-dimensional grid of values with interpolation methods. More... | |
Macros | |
#define | mycout QwMessage |
#define | mycerr QwError |
#define | myendl QwLog::endl |
Typedefs | |
typedef double | coord_t |
Enumerations | |
enum | EQwInterpolationMethod { kInterpolationMethodUnknown , kMultiLinear , kNearestNeighbor } |
Allowed interpolation methods. More... | |
#define mycerr QwError |
Definition at line 26 of file QwInterpolator.h.
Referenced by QwInterpolator< value_t, value_n >::SetDimensions(), and QwInterpolator< value_t, value_n >::SetMinimumMaximumStep().
#define mycout QwMessage |
Definition at line 25 of file QwInterpolator.h.
Referenced by QwInterpolator< value_t, value_n >::PrintCoverage(), QwInterpolator< value_t, value_n >::ReadBinaryFile(), QwInterpolator< value_t, value_n >::ReadText(), QwInterpolator< value_t, value_n >::WriteBinaryFile(), and QwInterpolator< value_t, value_n >::WriteText().
#define myendl QwLog::endl |
Definition at line 27 of file QwInterpolator.h.
Referenced by QwInterpolator< value_t, value_n >::PrintCoverage(), QwInterpolator< value_t, value_n >::ReadBinaryFile(), QwInterpolator< value_t, value_n >::ReadText(), QwInterpolator< value_t, value_n >::SetDimensions(), QwInterpolator< value_t, value_n >::SetMinimumMaximumStep(), QwInterpolator< value_t, value_n >::WriteBinaryFile(), and QwInterpolator< value_t, value_n >::WriteText().
typedef double coord_t |
Definition at line 30 of file QwInterpolator.h.
Allowed interpolation methods.
Enumerator | |
---|---|
kInterpolationMethodUnknown | |
kMultiLinear | |
kNearestNeighbor |
Definition at line 18 of file QwInterpolator.h.