#include "HDFCFUtil.h"
#include <BESDebug.h>
#include <BESLog.h>
#include <math.h>
Go to the source code of this file.
| #define GET_INTERCEPT |
( |
|
TYPE, |
|
|
|
CAST |
|
) |
| |
| #define GET_INTERCEPT |
( |
|
TYPE, |
|
|
|
CAST |
|
) |
| |
Value:case DFNT_##TYPE: \
{ \
CAST tmpvalue = *(CAST*)&((*i)->getValue()[0]); \
intercept = (float)tmpvalue; \
} \
break;
| #define GET_SLOPE |
( |
|
TYPE, |
|
|
|
CAST |
|
) |
| |
| #define GET_SLOPE |
( |
|
TYPE, |
|
|
|
CAST |
|
) |
| |
Value:case DFNT_##TYPE: \
{ \
CAST tmpvalue = *(CAST*)&((*i)->getValue()[0]); \
slope = (float)tmpvalue; \
} \
break;
| #define SIGNED_BYTE_TO_INT32 1 |