r7061: initial property settings
[ctsim.git] / tools / ifinfo.cpp
index 1e98db0a8a8314012d7f14cb21142f590318d00e..0b0a119e3ee2eef1565620fac3b51ab00a3066f1 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: ifinfo.cpp,v 1.6 2000/12/29 19:30:08 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
@@ -46,7 +46,7 @@ static struct option my_options[] =
   {0, 0, 0, 0}
 };
 
-static const char* g_szIdStr = "$Id: ifinfo.cpp,v 1.6 2000/12/29 19:30:08 kevin Exp $";
+static const char* g_szIdStr = "$Id$";
 
 
 void 
@@ -138,12 +138,12 @@ ifinfo_main (int argc, char *const argv[])
     im->printLabels (std::cout);
 
   if (opt_stats) {
-    std::cout << "Size: (" << im->nx() << "," << im->ny() << ")\n";\r
-    std::cout << "Data type: ";\r
-    if (im->dataType() == Array2dFile::DATA_TYPE_COMPLEX)\r
-      std::cout << "Complex\n";\r
-    else \r
-      std::cout << "Real\n";\r
+    std::cout << "Size: (" << im->nx() << "," << im->ny() << ")\n";
+    std::cout << "Data type: ";
+    if (im->dataType() == Array2dFile::DATA_TYPE_COMPLEX)
+      std::cout << "Complex\n";
+    else 
+      std::cout << "Real\n";
 
     im->printStatistics (std::cout);
   }