X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=tools%2Fctsimtext.cpp;h=ae89495cc2fe5232bbaffe30125609416cb812c5;hp=ad7a30685fa05602dbc3e2faeeb628da8d3b3ec0;hb=8a7697ce57b56cdc43698cd1241ad98d49f9b5ac;hpb=4e5b3666206ac20506bca9f03994cc072061a9a7 diff --git a/tools/ctsimtext.cpp b/tools/ctsimtext.cpp index ad7a306..ae89495 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.24 2003/01/11 21:23:38 kevin Exp $ +** $Id$ ** ** 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.24 2003/01/11 21:23:38 kevin Exp $"; +static const char* const g_szIdStr = "$Id$"; static const char* const s_szProgramName = "ctsimtext"; static const char* const s_szProgramName2 = "ctsimtext.exe"; static const char* const s_szProgramName3 = "ctsimtext-lam"; @@ -61,6 +61,7 @@ extern int pjHinterp_main (int argc, char* const argv[]); extern int pj2if_main (int argc, char* const argv[]); extern int pjinfo_main (int argc, char* const argv[]); extern int pjrec_main (int argc, char* const argv[]); +extern int linogram_main (int argc, char* const argv[]); static int processCommand (int argc, char* const argv[]); static void convertStringToArgcv (char* szLine, int* piArgc, char*** pppArgv); @@ -86,7 +87,7 @@ ctsimtext_usage (const char *program) std::cout << " phm2pj Take projections of a phantom object\n"; std::cout << " phm2helix Take projections of a phantom object\n"; std::cout << " pjHinterp Interpolate helical projections of a phantom object\n"; - + std::cout << " linogram Print linogram sampling\n"; } void @@ -106,6 +107,7 @@ interactive_usage () 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 << " linogram Display linogram sampling\n"; std::cout << "All functions accept --help as parameter for online help\n\n"; } @@ -159,7 +161,7 @@ ctsimtext_main (int argc, char * argv[]) convertStringToArgcv (pszInputLine, &argc, &argv); #ifdef DEBUG - for (unsigned int i = 0; i < argc; i++) + for (int i = 0; i < argc; i++) std::cout << "Token " << i << ": " << argv[i] << "\n"; #endif iReturn = processCommand (argc, argv); @@ -267,6 +269,8 @@ processCommand (int argc, char* const argv[]) return pjinfo_main (argc, argv); else if (strcasecmp (pszFunction, "pjrec") == 0) return pjrec_main (argc, argv); + else if (strcasecmp (pszFunction, "linogram") == 0) + return linogram_main (argc, argv); else { std::cout << "Unknown function name: " << pszFunction << "\n"; if (s_bInteractive)