Brief description of class still missing. More...
#include <ModalLine.h>
Public Member Functions | |
virtual void | append () |
virtual void | clear () |
virtual AbstractLine * | clone () const |
virtual int | count () const |
const ModalCurve & | curve () const |
ModalCurve & | curve () |
virtual void | insert (int index) |
virtual bool | isValid (int index) const |
void | operator= (const ModalLine &o) |
virtual Point | point (int index, const CurvePointOptions *) const |
virtual void | removeLast () |
void | setCurve (const ModalCurve &curve) |
virtual void | setValid (int index, bool v) |
virtual void | setX (int index, double v) |
virtual void | setY (int index, double v, const CurvePointOptions *) |
virtual void | setZ (int index, double v, const CurvePointOptions *) |
virtual const QString & | xml_tagName () const |
Static Public Attributes | |
static const QString | xmlModalLineTag = "RealStatisticalLine" |
Protected Attributes | |
ModalCurve | _curve |
Brief description of class still missing.
Full description of class still missing
virtual void QGpGuiWave::ModalLine::append | ( | ) | [inline, virtual] |
Implements SciFigs::AbstractLine.
{_curve.append(FactoryPoint());}
virtual void QGpGuiWave::ModalLine::clear | ( | ) | [inline, virtual] |
Implements SciFigs::AbstractLine.
AbstractLine * QGpGuiWave::ModalLine::clone | ( | ) | const [virtual] |
Implements SciFigs::AbstractLine.
References TRACE.
{ TRACE; ModalLine * l=new ModalLine; *l=*this; return l; }
virtual int QGpGuiWave::ModalLine::count | ( | ) | const [inline, virtual] |
Implements SciFigs::AbstractLine.
const ModalCurve& QGpGuiWave::ModalLine::curve | ( | ) | const [inline] |
Referenced by AutocorrTargetWidget::addCurve(), SpacSelector::createObjects(), and HistogramWidget::toStream().
{return _curve;}
ModalCurve& QGpGuiWave::ModalLine::curve | ( | ) | [inline] |
{return _curve;}
virtual void QGpGuiWave::ModalLine::insert | ( | int | index | ) | [inline, virtual] |
Implements SciFigs::AbstractLine.
{_curve.insert(index, FactoryPoint());}
virtual bool QGpGuiWave::ModalLine::isValid | ( | int | index | ) | const [inline, virtual] |
Reimplemented from SciFigs::AbstractLine.
{return _curve[index].isValid();}
void QGpGuiWave::ModalLine::operator= | ( | const ModalLine & | o | ) |
{ TRACE; _curve=o._curve; AbstractLine::operator=(o); }
Point QGpGuiWave::ModalLine::point | ( | int | index, |
const CurvePointOptions * | |||
) | const [virtual] |
Implements SciFigs::AbstractLine.
References _curve, QGpCoreTools::Curve< pointType >::at(), QGpCoreTools::StatisticalValue< numberType >::mean(), QGpCoreTools::Point2D::setX(), QGpCoreTools::Point2D::setY(), QGpCoreTools::Point::setZ(), QGpCoreTools::StatisticalValue< numberType >::stddev(), TRACE, and QGpCoreTools::StatisticalPoint< numberType >::x().
virtual void QGpGuiWave::ModalLine::removeLast | ( | ) | [inline, virtual] |
Implements SciFigs::AbstractLine.
void QGpGuiWave::ModalLine::setCurve | ( | const ModalCurve & | curve | ) | [inline] |
Referenced by QGpGuiWave::ModalCurveBrowser::addCurve().
virtual void QGpGuiWave::ModalLine::setValid | ( | int | index, |
bool | v | ||
) | [inline, virtual] |
Reimplemented from SciFigs::AbstractLine.
virtual void QGpGuiWave::ModalLine::setX | ( | int | index, |
double | v | ||
) | [inline, virtual] |
Implements SciFigs::AbstractLine.
{_curve[index].setX(v);}
virtual void QGpGuiWave::ModalLine::setY | ( | int | index, |
double | v, | ||
const CurvePointOptions * | |||
) | [inline, virtual] |
Implements SciFigs::AbstractLine.
{_curve[index].setMean(v);}
virtual void QGpGuiWave::ModalLine::setZ | ( | int | index, |
double | v, | ||
const CurvePointOptions * | |||
) | [inline, virtual] |
Implements SciFigs::AbstractLine.
{_curve[index].setStddev(v);}
virtual const QString& QGpGuiWave::ModalLine::xml_tagName | ( | ) | const [inline, virtual] |
Reimplemented from SciFigs::AbstractLine.
{return xmlModalLineTag;}
ModalCurve QGpGuiWave::ModalLine::_curve [protected] |
Referenced by operator=(), and point().
const QString QGpGuiWave::ModalLine::xmlModalLineTag = "RealStatisticalLine" [static] |