QwAnalysis
|
#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 23 of file QwInterpolator.h.
Referenced by QwInterpolator< float, 4 >::SetDimensions(), and QwInterpolator< float, 4 >::SetMinimumMaximumStep().
#define mycout QwMessage |
Definition at line 22 of file QwInterpolator.h.
Referenced by QwInterpolator< float, 4 >::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 24 of file QwInterpolator.h.
Referenced by QwInterpolator< float, 4 >::PrintCoverage(), QwInterpolator< value_t, value_n >::ReadBinaryFile(), QwInterpolator< value_t, value_n >::ReadText(), QwInterpolator< float, 4 >::SetDimensions(), QwInterpolator< float, 4 >::SetMinimumMaximumStep(), QwInterpolator< value_t, value_n >::WriteBinaryFile(), and QwInterpolator< value_t, value_n >::WriteText().
typedef double coord_t |
Definition at line 27 of file QwInterpolator.h.
Allowed interpolation methods.
Enumerator | |
---|---|
kInterpolationMethodUnknown | |
kMultiLinear | |
kNearestNeighbor |
Definition at line 15 of file QwInterpolator.h.