/***********/ /* smile.h */ /***********/ #ifndef _SMILE_H #define _SMILE_H #include #include #include #define SMILE_HEAT 0 #define SMILE_STRESS 1 #define SMILE_FREQ_CHANNELS 2048 #define SMILE_CORR_EXTENSION 8 static const char *fn_freq[] = {"freq.out", "shear_freq.out"}; static const char *fn_corr[] = {"corr.out", "shear_corr.out"}; static const char *fn_flux[][3] = {{"jx.out", "jy.out", "jz.out"}, {"syz.out", "sxz.out", "sxy.out"}}; double smile (int which, FILE *output); #endif