r333: *** empty log message ***
[ctsim.git] / include / plotfile.h
index af627b4ed82414927c7b1e8ddb32147e90f0811c..b88793f43ff99d6f8713cf730b7e296ef93efc1e 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: plotfile.h,v 1.2 2000/12/20 14:39:09 kevin Exp $
+**  $Id: plotfile.h,v 1.5 2001/01/02 07:47:36 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
 #include <iostream>
 #include <vector>
 #include "ctsupport.h"
-#include "plotfile.h"
+#include "plotfile.h"\r
+
 
 // Plotfile structure:
 // 1. Lines that begin with # are comments
 // 2. ASCII file format
 // 3. Header lines begin with <tags> and end with </tags>
-// 4. Valid headers
-//      <header>    (signifies beginning of headers)
-//      <description> (multiple instances may be present)
-//      <date>
-//      <title>
-//      <xlabel>
-//      <ylabel>
-//      <filetype>plotfile</filetype>  (required)
-//      <ncolumns>  (required)
-//      <nrecords>  (required)
-//      </header>   (required, signifies end of headers)
+// 4. Valid headers\r
+//      <plotfile ncolumns nrecords>    (signifies beginning of plotfile)
+//      <description> (beginning of description lines)\r
+//      <ezset>       (signifies beginning of ezset commands)\r
+//      <columns>     Beginning of data columns
 // 5. Data is ASCII file format, one record per line
 //    Number of columns is variable and is set by ncolumns header
-// 6. Data begins with <plotdata> and ends with </plotdata>
+\r
 
 
 class PlotFile 
 {
  private:
   std::string m_strFilename;
-  std::string m_strTitle;
-  std::string m_strXLabel;
-  std::string m_strYLabel;
   std::string m_strDate;
-  std::vector<std::string> m_vecStrDescriptions;
+  std::vector<std::string> m_vecStrDescriptions;\r
+  std::vector<std::string> m_vecStrEzsetCommands;
   std::vector<double> m_vecCurves;
   int m_iNumColumns;
   int m_iNumRecords;
@@ -91,44 +84,20 @@ public:
   PlotFile (void);
   ~PlotFile ();
 
-  void setTitle (const std::string& title)
-    { m_strTitle = title; }
-       \r
-  void setTitle (const char* const title)\r
-  { m_strTitle = title; }\r
-
-  void setXLabel (const std::string& label)
-    { m_strXLabel = label; }
-       \r
-  void setXLabel (const char* const label)\r
-  { m_strXLabel = label; }\r
-
-  void setYLabel (const std::string& label)
-    { m_strYLabel = label; }
-
-  void setYLabel (const char* const label)\r
-  { m_strYLabel = label; }\r
-\r
   void setCurveSize (int iNCurves, int iNRecords);
 
-  void addDescription (const char* const pszDesc)
-    { m_vecStrDescriptions.push_back (pszDesc); }
-      
+  void addDescription (const char* const pszDesc)\r
+    { m_vecStrDescriptions.push_back (pszDesc); }\r
+\r
+  void addEzsetCommand (const char* const pszCmd)\r
+    { m_vecStrEzsetCommands.push_back (pszCmd); }\r
+  
   bool addColumn (int iCol, const double* const pdColumn);
 
   bool addColumn (int iCol, const float* const pdColumn);\r
 \r
   void getColumn (int iCol, double *pdColumnData) const;\r
 \r
-  const std::string& getTitle () const
-    { return m_strTitle; }
-
-  const std::string& getXLabel () const
-    { return m_strXLabel; }
-
-  const std::string& getYLabel () const
-    { return m_strXLabel; }
-
   const std::string& getDate () const
     { return m_strDate; }
 
@@ -137,6 +106,10 @@ public:
 
   int getNumRecords () const
     { return m_iNumRecords; }
+\r
+  bool getMinMax (int startingCol, double& min, double& max) const;\r
+\r
+  bool statistics (int startingCol, double& min, double& max, double& mean, double& mode, double& median, double &stddev) const;\r
 
   unsigned int getNumDescriptions (void) const
       { return m_vecStrDescriptions.size(); }
@@ -144,6 +117,12 @@ public:
   const std::string& getDescription (int iDescIndex) const
     { return m_vecStrDescriptions[iDescIndex]; }
 
+  unsigned int getNumEzsetCommands (void) const\r
+      { return m_vecStrEzsetCommands.size(); }\r
+\r
+  const std::string& getEzsetCommand (int iIndex) const\r
+    { return m_vecStrEzsetCommands[iIndex]; }\r
+\r
   bool fileRead (const char* const filename);
 
   bool fileWrite (const char* const filename);
@@ -152,6 +131,7 @@ public:
       {  return m_strFilename; }
 
   void printHeaders (std::ostream& os) const;
+  void printHeaders (std::ostringstream& os) const;
 };