X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=include%2Fplotfile.h;h=14da9472cb539b86e5283dfb5240e45179e001cc;hp=2643081e7ea39adcd14e21063de012f2a0fab78a;hb=1a050c98763fbbc0662731b0b76953acede6f5d7;hpb=c8b19dfaffba9f06d8b6c40cb1bb83a8964867f7 diff --git a/include/plotfile.h b/include/plotfile.h index 2643081..14da947 100644 --- a/include/plotfile.h +++ b/include/plotfile.h @@ -1,10 +1,10 @@ /***************************************************************************** ** FILE IDENTIFICATION ** -** Name: plotfile.h +** Name: plotfile.h ** Purpose: PlotFile class header -** Programmer: Kevin Rosenberg -** Date Started: Dec 2000 +** Programmer: Kevin Rosenberg +** Date Started: Dec 2000 ** ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg @@ -58,7 +58,7 @@ -class PlotFile +class PlotFile { private: std::string m_strFilename; @@ -69,71 +69,71 @@ private: int m_iNumColumns; int m_iNumRecords; bool m_bScatterPlot; - + bool headerRead (std::iostream& os); bool headerWrite (std::iostream& os); bool columnsRead (std::iostream& os); bool columnsWrite (std::iostream& os); - + void initHeaders (); - + PlotFile (const PlotFile& rhs); // copy constructor PlotFile& operator= (const PlotFile&); // assignment operator - + public: PlotFile (int iNColumns, int iNRecords); PlotFile (void); ~PlotFile (); - + void setCurveSize (int iNCurves, int iNRecords, bool bScatterPlot = false); - + void addDescription (const char* const pszDesc) { m_vecStrDescriptions.push_back (pszDesc); } - + void addEzsetCommand (const char* const pszCmd) { m_vecStrEzsetCommands.push_back (pszCmd); } - + bool addColumn (int iCol, const double* const pdColumn); - + bool addColumn (int iCol, const float* const pdColumn); - + void getColumn (int iCol, double *pdColumnData) const; - + const std::string& getDate () const { return m_strDate; } - + int getNumColumns () const { return m_iNumColumns; } - + int getNumRecords () const { return m_iNumRecords; } - + bool getIsScatterPlot() const { return m_bScatterPlot; } - + bool getMinMax (int startingCol, double& min, double& max) const; - + bool statistics (int startingCol, double& min, double& max, double& mean, double& mode, double& median, double &stddev) const; - + unsigned int getNumDescriptions (void) const { return m_vecStrDescriptions.size(); } - + const std::string& getDescription (int iDescIndex) const { return m_vecStrDescriptions[iDescIndex]; } - + unsigned int getNumEzsetCommands (void) const { return m_vecStrEzsetCommands.size(); } - + const std::string& getEzsetCommand (int iIndex) const { return m_vecStrEzsetCommands[iIndex]; } - + bool fileRead (const char* const filename); - + bool fileWrite (const char* const filename); - - const std::string& getFilename (void) const + + const std::string& getFilename (void) const { return m_strFilename; } - + void printHeaders (std::ostream& os) const; void printHeaders (std::ostringstream& os) const; void printHeadersBrief (std::ostream& os) const;