r403: no message
[ctsim.git] / tools / pj2if.cpp
index 0192898df9c1800c8307cf86b78bec702950da5d..29907f59e5d903a2ee24643b8a38629737677fc7 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: pj2if.cpp,v 1.7 2000/12/17 23:30:48 kevin Exp $
+**  $Id: pj2if.cpp,v 1.8 2001/01/16 20:55:29 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
 #include "timer.h"
 
 
-enum { O_VERBOSE, O_DUMP, O_HELP, O_VERSION };
+enum { O_VERBOSE, O_HELP, O_VERSION, O_POLAR };
 
 static struct option my_options[] =
 {
+  {"polar", 0, 0, O_POLAR},
   {"verbose", 0, 0, O_VERBOSE},
-  {"dump", 0, 0, O_DUMP},
   {"help", 0, 0, O_HELP},
   {"version", 0, 0, O_VERSION},
   {0, 0, 0, 0}
 };
 
-static const char* g_szIdStr = "$Id: pj2if.cpp,v 1.7 2000/12/17 23:30:48 kevin Exp $";
+static const char* g_szIdStr = "$Id: pj2if.cpp,v 1.8 2001/01/16 20:55:29 kevin Exp $";
 
 void 
 pj2if_usage (const char *program)
 {
   std::cout << "usage: " << fileBasename(program) << " in-proj-file out-if-file [OPTIONS]\n";
-  std::cout << "Converts a projection file to a IF file\n";
+  std::cout << "Converts a projection file to a imagefile\n";
   std::cout << std::endl;
+  std::cout << "   --polar     Convert to polar format\n";
   std::cout << "   --verbose   Verbose mode\n";
-  std::cout << "   --dump      Dump all scan data\n";
   std::cout << "   --version   Print version\n";
   std::cout << "   --help      Print this help message\n";
 }
 
-         
-
 int 
 pj2if_main (const int argc, char *const argv[])
 {
@@ -83,9 +81,6 @@ pj2if_main (const int argc, char *const argv[])
        case O_VERBOSE:
          optVerbose = true;
          break;
-       case O_DUMP:
-         optDump = true;
-         break;
         case O_VERSION:
 #ifdef VERSION
          std::cout << "Version " << VERSION << std::endl << g_szIdStr << std::endl;
@@ -117,9 +112,7 @@ pj2if_main (const int argc, char *const argv[])
     return (1);
   }
 
-  if (optDump)
-    pj.printProjectionData();
-  else if (optVerbose) {
+  if (optVerbose) {
     std::ostringstream os;
     pj.printScanInfo (os);
     std::cout << os.str();