X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fctrec.c;fp=src%2Fctrec.c;h=2e53770215afe3a1039b8875c4e5c84b78da9e6c;hb=a7bc93cf526e313d69b068f0cb866b5ef108eaf0;hp=d2706757f08e25a4bbb972b7392cbd66eed005b8;hpb=c9c581bfabd0c20b3da1203fdaf93080d885ce7a;p=ctsim.git diff --git a/src/ctrec.c b/src/ctrec.c index d270675..2e53770 100644 --- a/src/ctrec.c +++ b/src/ctrec.c @@ -2,8 +2,11 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: ctrec.c,v 1.5 2000/04/30 11:41:06 kevin Exp $ +** $Id: ctrec.c,v 1.6 2000/05/02 15:31:47 kevin Exp $ ** $Log: ctrec.c,v $ +** Revision 1.6 2000/05/02 15:31:47 kevin +** code cleaning +** ** Revision 1.5 2000/04/30 11:41:06 kevin ** Cleaned up debugging code ** @@ -238,13 +241,13 @@ main (const int argc, char *const argv[]) if (opt_filter == W_G_HAMMING || opt_filter == W_AG_HAMMING) sprintf (filt_name, "%s: alpha = %.2f", - filter_name_of (opt_filter), opt_filter_param); + name_of_filter (opt_filter), opt_filter_param); else - sprintf (filt_name, "%s", filter_name_of (opt_filter)); + sprintf (filt_name, "%s", name_of_filter (opt_filter)); sprintf (remark, "Reconstruct: %dx%d, %s, %s, %s", - nx, ny, filt_name, interp_name_of (opt_interp), name_of_backproj(opt_backproj)); + nx, ny, filt_name, name_of_interpolation (opt_interp), name_of_backproj(opt_backproj)); if (opt_verbose) fprintf (stdout, "%s\n", remark);