X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tools%2Fif2.cpp;h=2b69d27f12fb1e05ad4cd5b9b1df8d47d390af5a;hb=ca7c001fce978b680543f8338a404b8c0701a935;hp=0f36b595f02beb734cbeba00b6ef0fcbb8d9b4eb;hpb=5c6b29ab4885308cc3381af6e0a68f4804956d2e;p=ctsim.git diff --git a/tools/if2.cpp b/tools/if2.cpp index 0f36b59..2b69d27 100644 --- a/tools/if2.cpp +++ b/tools/if2.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: if2.cpp,v 1.6 2000/12/29 15:45:06 kevin Exp $ +** $Id: if2.cpp,v 1.7 2001/01/09 22:31:47 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 @@ -46,7 +46,7 @@ static struct option my_options[] = {0, 0, 0, 0} }; -static const char* g_szIdStr = "$Id: if2.cpp,v 1.6 2000/12/29 15:45:06 kevin Exp $"; +static const char* g_szIdStr = "$Id: if2.cpp,v 1.7 2001/01/09 22:31:47 kevin Exp $"; void if2_usage (const char *program) @@ -251,23 +251,6 @@ if2_main (int argc, char *const argv[]) plotFile.fileWrite (strOutFile.c_str()); -#if HAVE_SGP - SGPDriver driver ("Column Plot"); - SGP sgp (driver); - EZPlot ezplot; - ezplot.ezset ("clear."); - ezplot.ezset ("xticks major 5."); - ezplot.ezset ("xlabel Column"); - ezplot.ezset ("title Column Plot"); - ezplot.ezset ("ylabel Pixel"); - ezplot.ezset ("box."); - ezplot.ezset ("grid."); - ezplot.addCurve (plot_xaxis, v1[opt_columnPlot], im_in1.ny()); - ezplot.addCurve (plot_xaxis, v2[opt_columnPlot], im_in2.ny()); - ezplot.plot (&sgp); - std::cout << "Press enter to continue" << flush; - cio_kb_getc(); -#endif delete plot_xaxis; } @@ -306,23 +289,6 @@ if2_main (int argc, char *const argv[]) plotFile.fileWrite (strOutFile.c_str()); -#if HAVE_SGP - SGPDriver driver ("Row Plot"); - SGP sgp (driver); - EZPlot ezplot; - ezplot.ezset ("clear."); - ezplot.ezset ("xticks major 5."); - ezplot.ezset ("title Row Plot"); - ezplot.ezset ("xlabel Row"); - ezplot.ezset ("ylabel Pixel"); - ezplot.ezset ("box."); - ezplot.ezset ("grid."); - ezplot.addCurve (plot_xaxis, v1Row, im_in1.nx()); - ezplot.addCurve (plot_xaxis, v2Row, im_in2.nx()); - ezplot.plot (&sgp); - std::cout << "Press enter to continue" << flush; - cio_kb_getc(); -#endif delete plot_xaxis; delete v1Row; delete v2Row;