Teem 1.10.0
src/gage/print.c File Reference
#include "gage.h"
#include "privateGage.h"
Include dependency graph for print.c:

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 Documentation

#define PRINT_2 (   NN,
 
)
Value:
fw = fw##NN##C;                                     \
   fprintf(file, " --" #NN "-->% 15.7f   % 15.7f\n", \
          (float)fw[0], (float)fw[1])
#define PRINT_4 (   NN,
 
)
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,
 
)
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,
 
)
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); }

Function Documentation

void _gagePrint_fslw ( FILE *  file,
gageContext ctx 
)
void _gagePrint_off ( FILE *  file,
gageContext ctx 
)
void gageQueryPrint ( FILE *  file,
const gageKind kind,
gageQuery  query 
)