Structure storing the function to be used for a 2D plot. More...
Public Member Functions | |
Function2d (const std::string &title, const std::string &function) | |
Initializes with the function and title. More... | |
virtual std::string | GetCommand () const |
Returns the plot type ("plot" or "splot"). More... | |
virtual bool | IsEmpty () const |
Checks to see if this GnuplotDataset is empty. More... | |
virtual void | PrintDataFile (std::ostream &os, bool generateOneOutputFile) const |
Print the inline data file contents trailing the plot command. More... | |
virtual void | PrintExpression (std::ostream &os, bool generateOneOutputFile, unsigned int dataFileDatasetIndex, std::string &dataFileName) const |
Prints the plot description used as argument to (s)plot. More... | |
Public Member Functions inherited from ns3::GnuplotDataset::Data | |
Data (const std::string &title) | |
Initializes the reference counter to 1 and sets m_title and m_extra. More... | |
virtual | ~Data () |
Required. More... | |
Public Attributes | |
std::string | m_function |
Function to use. More... | |
Public Attributes inherited from ns3::GnuplotDataset::Data | |
std::string | m_extra |
Extra parameters for the plot. More... | |
unsigned int | m_references |
ref/unref counter for garbage collection More... | |
std::string | m_title |
Dataset title. More... | |
Structure storing the function to be used for a 2D plot.
Definition at line 416 of file gnuplot.cc.
ns3::Gnuplot2dFunction::Function2d::Function2d | ( | const std::string & | title, |
const std::string & | function | ||
) |
Initializes with the function and title.
title | Title of the plot |
function | Function to plot |
Definition at line 439 of file gnuplot.cc.
|
virtual |
Returns the plot type ("plot" or "splot").
Implements ns3::GnuplotDataset::Data.
Definition at line 446 of file gnuplot.cc.
|
virtual |
Checks to see if this GnuplotDataset is empty.
Implements ns3::GnuplotDataset::Data.
Definition at line 472 of file gnuplot.cc.
|
virtual |
Print the inline data file contents trailing the plot command.
Empty for functions.
os | Output stream |
generateOneOutputFile | If true, generate only one output file. |
Implements ns3::GnuplotDataset::Data.
Definition at line 467 of file gnuplot.cc.
|
virtual |
Prints the plot description used as argument to (s)plot.
Either the function expression or a datafile description. Should include m_title and m_extra in the output.
If more than one output file is being generated, i.e. separate data and control files, then the index for the current dataset and the name for the data file are also included.
os | Output stream |
generateOneOutputFile | If true, generate only one output file. |
dataFileDatasetIndex | Dataset Index |
dataFileName | Dataset file name |
Implements ns3::GnuplotDataset::Data.
Definition at line 452 of file gnuplot.cc.
std::string ns3::Gnuplot2dFunction::Function2d::m_function |
Function to use.
Definition at line 420 of file gnuplot.cc.