X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fctrec.cpp;h=2d94be905dfe2f61a1c75e88740bdc74144233f1;hp=42dadc0ca9310632c665eefc34465e26c9ad75b2;hb=207332eec9416d299766abb697312cfd27eb890e;hpb=5cf6874680f80d238bf34535d711dc223813f951 diff --git a/src/ctrec.cpp b/src/ctrec.cpp index 42dadc0..2d94be9 100644 --- a/src/ctrec.cpp +++ b/src/ctrec.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: ctrec.cpp,v 1.11 2000/06/18 10:27:11 kevin Exp $ +** $Id: ctrec.cpp,v 1.12 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 @@ -176,11 +176,11 @@ ctrec_main (int argc, char * argv[]) break; case O_VERSION: #ifdef VERSION - cout << "Version " << VERSION << endl; + cout << "Version " << VERSION << endl; #else - cout << "Unknown version number" << endl; + cout << "Unknown version number" << endl; #endif - exit(0); + return (0); case O_HELP: case '?': ctrec_usage(argv[0]); @@ -370,7 +370,17 @@ ReduceImageMPI (MPIWorld& mpiWorld, ImageFile* imLocal, ImageFile* imGlobal) int main (int argc, char* argv[]) { - return (ctrec_main(argc, argv)); + int retval = 1; + + try { + retval = ctrec_main(argc, argv); + } catch (exception e) { + cerr << "Exception: " << e.what() << endl; + } catch (...) { + cerr << "Unknown exception" << endl; + } + + return (retval); } #endif