X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=libctsupport%2Fplotfile.cpp;h=9daba2feef498a6bd760d1f1107c3877da945f23;hp=81682b9187488e1e41dd5bc91ce323a7e7c023bd;hb=a2bb680d159717dbd81e3ad179cb28adbf3a3e9a;hpb=9f29c8b32c972db1178d6f8551d5cd57ceb67083 diff --git a/libctsupport/plotfile.cpp b/libctsupport/plotfile.cpp index 81682b9..9daba2f 100644 --- a/libctsupport/plotfile.cpp +++ b/libctsupport/plotfile.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: plotfile.cpp,v 1.12 2001/01/28 19:10:18 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 @@ -64,17 +64,17 @@ PlotFile::initHeaders () } void -PlotFile::setCurveSize (int nCols, int nRecords) +PlotFile::setCurveSize (int nCols, int nRecords, bool bScatterPlot) { m_iNumColumns = nCols; m_iNumRecords = nRecords; + m_bScatterPlot = bScatterPlot; m_vecCurves.clear(); m_vecCurves.reserve (m_iNumColumns * m_iNumRecords); } // Storage format // a Column's records are stored sequentially. It begins at iCol * m_iNumRecords - bool PlotFile::addColumn (int iCol, const double* const pdColData) { @@ -191,7 +191,7 @@ PlotFile::fileRead (const char* const filename) #ifdef MSVC fstream fs (m_strFilename.c_str(), std::ios::in); #else - fstream fs (m_strFilename.c_str(), std::ios::in | std::ios::nocreate); + fstream fs (m_strFilename.c_str(), std::ios::in); // | std::ios::nocreate); #endif if (fs.fail()) {