X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fphm2rs.c;h=4dbf09080b4dac963cbce5a9f8f038fdf396bbdb;hp=6076995212bf7a06863243a0d1be70b93805898e;hb=331b5c344271387790f735540510e2a07e4e42a7;hpb=44ba0e9facc91003bf3ef32876f8b8ac5439c3c1 diff --git a/src/phm2rs.c b/src/phm2rs.c index 6076995..4dbf090 100644 --- a/src/phm2rs.c +++ b/src/phm2rs.c @@ -2,8 +2,11 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: phm2rs.c,v 1.8 2000/05/04 18:16:34 kevin Exp $ +** $Id: phm2rs.c,v 1.9 2000/05/08 20:02:32 kevin Exp $ ** $Log: phm2rs.c,v $ +** Revision 1.9 2000/05/08 20:02:32 kevin +** ANSI C changes +** ** Revision 1.8 2000/05/04 18:16:34 kevin ** renamed filter definitions ** @@ -54,16 +57,7 @@ #include "ct.h" -#define O_PHANTOM 1 -#define O_DESC 2 -#define O_NRAY 3 -#define O_ROTANGLE 4 -#define O_TRACE 5 -#define O_VERBOSE 6 -#define O_HELP 7 -#define O_PHMFILE 8 -#define O_DEBUG 10 -#define O_VERSION 11 +enum { O_PHANTOM, O_DESC, O_NRAY, O_ROTANGLE, O_TRACE, O_VERBOSE, O_HELP, O_PHMFILE, O_DEBUG, O_VERSION }; static struct option my_options[] = { @@ -368,12 +362,6 @@ main (const int argc, char *const argv[]) detector_free (det); - if (opt_trace >= TRACE_PHM) - { - crt_set_cpos (1, 1); - printf("Finished\n"); - } - return (0); }