X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tools%2Fctsimtext.cpp;h=0b2b6a477f7c368b40cb7ec5c9e1e489d4215cec;hb=87748a0c3854cd5b2660baad217cf7071cb24be2;hp=54236af2434427345044bb3b9ded2f8d82c253e5;hpb=bd1d464294e037da19ccc80d8cc60475768eb2ca;p=ctsim.git diff --git a/tools/ctsimtext.cpp b/tools/ctsimtext.cpp index 54236af..0b2b6a4 100644 --- a/tools/ctsimtext.cpp +++ b/tools/ctsimtext.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: ctsimtext.cpp,v 1.20 2001/09/24 09:40:42 kevin Exp $ +** $Id: ctsimtext.cpp,v 1.23 2002/10/24 20:09:55 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 @@ -45,7 +45,7 @@ extern "C" { // If linked to ctsimtext, but executed as another name, eg pjrec, then program will use that // linked name as name of function. -static const char* const g_szIdStr = "$Id: ctsimtext.cpp,v 1.20 2001/09/24 09:40:42 kevin Exp $"; +static const char* const g_szIdStr = "$Id: ctsimtext.cpp,v 1.23 2002/10/24 20:09:55 kevin Exp $"; static const char* const s_szProgramName = "ctsimtext"; static const char* const s_szProgramName2 = "ctsimtext.exe"; static const char* const s_szProgramName3 = "ctsimtext-lam"; @@ -100,10 +100,10 @@ interactive_usage () std::cout << " if2 Dual image file conversions\n"; std::cout << " phm2if Convert a geometric phantom into an imagefile\n"; std::cout << " phm2pj Take projections of a phantom object\n"; - std::cout << " phm2helix Take projections of a phantom object\n"; + std::cout << " phm2helix Take projections of a phantom object\n"; std::cout << " pjinfo Projection file information\n"; std::cout << " pj2if Convert an projection file into an imagefile\n"; - std::cout << " pjHinterp Interpolate helical projections of a phantom object\n"; + std::cout << " pjHinterp Interpolate helical projections of a phantom object\n"; std::cout << " pjrec Projection reconstruction\n"; std::cout << " quit Quits shell\n"; std::cout << "All functions accept --help as parameter for online help\n\n"; @@ -257,10 +257,10 @@ processCommand (int argc, char* const argv[]) return phm2if_main (argc, argv); else if (strcasecmp (pszFunction, "phm2pj") == 0) return phm2pj_main (argc, argv); - else if (strcasecmp (pszFunction, "phm2helix") == 0) - return phm2helix_main (argc, argv); - else if (strcasecmp (pszFunction, "pjHinterp") == 0) - return pjHinterp_main (argc, argv); + else if (strcasecmp (pszFunction, "phm2helix") == 0) + return phm2helix_main (argc, argv); + else if (strcasecmp (pszFunction, "pjHinterp") == 0) + return pjHinterp_main (argc, argv); else if (strcasecmp (pszFunction, "pj2if") == 0) return pj2if_main (argc, argv); else if (strcasecmp (pszFunction, "pjinfo") == 0) @@ -293,4 +293,3 @@ main (int argc, char* argv[]) return retval; } -