r102: fixed mpi bug
[ctsim.git] / src / pj2if.cpp
index c77f901c9bf538bb8d01ac99bc1b4127b7fdb13c..26c537620002eb36e81a9bc14148e1c60ccaeae5 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
 ** FILE IDENTIFICATION
 **
-**   Name:          proj2if.cpp
+**   Name:          pj2if.cpp
 **   Purpose:       Convert an projection data file to an image file
 **   Programmer:    Kevin Rosenberg
 **   Date Started:  April 2000
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: pj2if.cpp,v 1.1 2000/06/17 20:12:15 kevin Exp $
+**  $Id: pj2if.cpp,v 1.3 2000/06/19 17:58:13 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
@@ -26,7 +26,7 @@
 ******************************************************************************/
 
 /* FILE
- *   proj2if.c                 Convert Raysum to image
+ *   pj2if.c                   Convert Raysum to image
  *
  * DATE
  *   Apr 1999
@@ -47,22 +47,22 @@ static struct option my_options[] =
 
 
 void 
-proj2if_usage (const char *program)
+pj2if_usage (const char *program)
 {
-  fprintf(stdout, "usage: %s in-proj-file out-if-file [OPTIONS]\n", fileBasename(program));
-  fprintf(stdout, "This program converts a projection file to a IF file\n");
-  fprintf(stdout, "\n");
-  fprintf(stdout, "   --verbose   Verbose mode\n");
-  fprintf(stdout, "   --version   Print version\n");
-  fprintf(stdout, "   --help      Print this help message\n");
+  cout << "usage: " << fileBasename(program) << " in-proj-file out-if-file [OPTIONS]" << endl;
+  cout << "Converts a projection file to a IF file" << endl;
+  cout << endl;
+  cout << "   --verbose   Verbose mode" << endl;
+  cout << "   --version   Print version" << endl;
+  cout << "   --help      Print this help message" << endl;
 }
 
          
 
 int 
-proj2if_main (const int argc, char *const argv[])
+pj2if_main (const int argc, char *const argv[])
 {
-  char *proj_name, *im_name;
+  char *pj_name, *im_name;
   int ix, iy;
   bool opt_verbose = false;
   extern int optind;
@@ -80,47 +80,47 @@ proj2if_main (const int argc, char *const argv[])
          break;
         case O_VERSION:
 #ifdef VERSION
-         fprintf(stdout, "Version %s\n", VERSION);
+          cout << "Version " << VERSION << endl;
 #else
-         fprintf(stderr, "Unknown version number");
+          cout << "Unknown version number" << endl;
 #endif
-         exit(0);
+         return (0);
        case O_HELP:
        case '?':
-         proj2if_usage(argv[0]);
+         pj2if_usage(argv[0]);
          return (0);
        default:
-         proj2if_usage(argv[0]);
+         pj2if_usage(argv[0]);
          return (1);
        }
     }
   
   if (argc - optind != 2) {
-    proj2if_usage(argv[0]);
+    pj2if_usage(argv[0]);
     return (1);
   }
 
-  proj_name = argv[optind];
+  pj_name = argv[optind];
   im_name = argv[optind + 1];
 
-  Projections proj;
-  if (! proj.read (proj_name)) {
-    sys_error (ERR_SEVERE, "Can not open projection file %s", proj_name);
+  Projections pj;
+  if (! pj.read (pj_name)) {
+    sys_error (ERR_SEVERE, "Can not open projection file %s", pj_name);
     return (1);
   }
 
   if (opt_verbose)
-      proj.printScanInfo();
+      pj.printScanInfo();
   
-  ImageFile im (im_name, proj.nDet(), proj.nView());
+  ImageFile im (im_name, pj.nDet(), pj.nView());
   
   ImageFileArray v = im.getArray();
 
-  for (iy = 0; iy < proj.nView(); iy++)
+  for (iy = 0; iy < pj.nView(); iy++)
     {
-      DetectorArray& detarray = proj.getDetectorArray (iy);
+      DetectorArray& detarray = pj.getDetectorArray (iy);
       const DetectorValue* detval = detarray.detValues();
-      for (ix = 0; ix < proj.nDet(); ix++)
+      for (ix = 0; ix < pj.nDet(); ix++)
        {
          v[ix][iy] = detval[ix];
        }
@@ -128,7 +128,7 @@ proj2if_main (const int argc, char *const argv[])
 
   im.fileCreate ();
   im.arrayDataWrite ();
-  im.labelAdd (Array2dFileLabel::L_HISTORY, proj.remark(), proj.calcTime());
+  im.labelAdd (Array2dFileLabel::L_HISTORY, pj.remark(), pj.calcTime());
   im.labelAdd (Array2dFileLabel::L_HISTORY, "Conversion from .pj to .if");
   im.fileClose ();
   
@@ -140,6 +140,16 @@ proj2if_main (const int argc, char *const argv[])
 int 
 main (const int argc, char *const argv[])
 {
-  return (proj2if_main(argc, argv));
+  int retval = 1;
+
+  try {
+    retval = pj2if_main(argc, argv);
+  } catch (exception e) {
+    cerr << "Exception: " << e.what() << endl;
+  } catch (...) {
+    cerr << "Unknown exception" << endl;
+  }
+
+  return (retval);
 }
 #endif