#include "gage.h"
#include "privateGage.h"
Defines | |
#define | PRINT_2(NN, C) |
#define | PRINT_4(NN, C) |
#define | PRINT_N(NN, C) |
#define | PRINTALL(HOW, C) |
Functions | |
void | _gagePrint_off (FILE *file, gageContext *ctx) |
void | _gagePrint_fslw (FILE *file, gageContext *ctx) |
void | gageQueryPrint (FILE *file, const gageKind *kind, gageQuery query) |
#define PRINT_2 | ( | NN, | |||
C | ) |
Value:
fw = fw##NN##C; \ fprintf(file, " --" #NN "-->% 15.7f % 15.7f\n", \ (float)fw[0], (float)fw[1])
#define PRINT_4 | ( | NN, | |||
C | ) |
Value:
fw = fw##NN##C; \ fprintf(file, " --" #NN "-->% 15.7f % 15.7f % 15.7f % 15.7f\n", \ (float)fw[0], (float)fw[1], (float)fw[2], (float)fw[3])
#define PRINT_N | ( | NN, | |||
C | ) |
Value:
fw = fw##NN##C; \ fprintf(file, " --" #NN "--> \n"); \ for (i=0; i<fd; i++) \ fprintf(file, " % 5d : % 15.7f\n", i, (float)fw[i])
#define PRINTALL | ( | HOW, | |||
C | ) |
Value:
if (ctx->needK[gageKernel00]) { HOW(00,C); } \ if (ctx->needK[gageKernel10]) { HOW(10,C); } \ if (ctx->needK[gageKernel11]) { HOW(11,C); } \ if (ctx->needK[gageKernel20]) { HOW(20,C); } \ if (ctx->needK[gageKernel21]) { HOW(21,C); } \ if (ctx->needK[gageKernel22]) { HOW(22,C); }
void _gagePrint_fslw | ( | FILE * | file, | |
gageContext * | ctx | |||
) |
void _gagePrint_off | ( | FILE * | file, | |
gageContext * | ctx | |||
) |