SNAP Library 2.2, User Reference  2014-03-11 19:15:55
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
TGnuPlot::TGpSeries Class Reference

List of all members.

Public Member Functions

 TGpSeries ()
 TGpSeries (const TGpSeries &Gps)
TGpSeriesoperator= (const TGpSeries &Gps)
bool operator< (const TGpSeries &Gps) const
bool SaveXVals () const

Public Attributes

TGpSeriesTy SeriesTy
TFltKdV XYValV
TFltV ZValV
TStr Label
TStr WithStyle
TStr DataFNm
int XCol
int YCol
int ZCol

Detailed Description

Definition at line 25 of file gnuplot.h.


Constructor & Destructor Documentation

Definition at line 33 of file gnuplot.h.

: SeriesTy(gpwLines), XYValV(), ZValV(), Label(), WithStyle(), DataFNm(), XCol(0), YCol(0), ZCol(0) { }

Definition at line 63 of file gnuplot.cpp.

                                                         :
  SeriesTy(Gps.SeriesTy), XYValV(Gps.XYValV), ZValV(Gps.ZValV),
  Label(Gps.Label), WithStyle(Gps.WithStyle), DataFNm(Gps.DataFNm),
  XCol(Gps.XCol), YCol(Gps.YCol), ZCol(Gps.ZCol) {
}

Member Function Documentation

bool TGnuPlot::TGpSeries::operator< ( const TGpSeries Gps) const

Definition at line 81 of file gnuplot.cpp.

                                                              {
  return (XYValV < Gps.XYValV) || ((XYValV == Gps.XYValV) && (Label < Gps.Label));
}
TGnuPlot::TGpSeries & TGnuPlot::TGpSeries::operator= ( const TGpSeries Gps)

Definition at line 69 of file gnuplot.cpp.

                                                                              {
  if(this != &Gps) {
    SeriesTy = Gps.SeriesTy;
    XYValV = Gps.XYValV;  ZValV = Gps.ZValV;
    Label = Gps.Label;
    DataFNm = Gps.DataFNm;
    WithStyle = Gps.WithStyle;
    XCol = Gps.XCol;  YCol = Gps.YCol;  ZCol = Gps.ZCol;
  }
  return *this;
}
bool TGnuPlot::TGpSeries::SaveXVals ( ) const [inline]

Definition at line 37 of file gnuplot.h.

{ return (YCol-XCol)==1; }

Member Data Documentation

Definition at line 30 of file gnuplot.h.

Definition at line 30 of file gnuplot.h.

Definition at line 30 of file gnuplot.h.

Definition at line 31 of file gnuplot.h.

Definition at line 28 of file gnuplot.h.

Definition at line 31 of file gnuplot.h.

Definition at line 31 of file gnuplot.h.

Definition at line 29 of file gnuplot.h.


The documentation for this class was generated from the following files: