Isis 3 Programmer Reference
Isis::CalculatorVariablePool Class Reference

This is a simple class to model a Calculator Variable Pool. More...

#include <InlineCalculator.h>

Collaboration diagram for Isis::CalculatorVariablePool:
Collaboration graph

Public Member Functions

 CalculatorVariablePool ()
 Constructs a CalculatorVariablePool object.
 
 ~CalculatorVariablePool ()
 Destroys the CalculatorVariablePool object.
 
virtual bool exists (const QString &variable) const
 Returns true so the real error can be reported.
 
virtual QVector< double > value (const QString &variable, const int &index=0) const
 Return vector of doubles for Calculator functions.
 
virtual void add (const QString &key, QVector< double > &values)
 Add a parameter to the variable pool.
 

Detailed Description

This is a simple class to model a Calculator Variable Pool.

Author
2012-07-15 Kris Becker
History
2012-07-15 Kris Becker - Original version.

Definition at line 121 of file InlineCalculator.h.

Constructor & Destructor Documentation

◆ CalculatorVariablePool()

Isis::CalculatorVariablePool::CalculatorVariablePool ( )

Constructs a CalculatorVariablePool object.

Definition at line 659 of file InlineCalculator.cpp.

◆ ~CalculatorVariablePool()

Isis::CalculatorVariablePool::~CalculatorVariablePool ( )

Destroys the CalculatorVariablePool object.

Definition at line 666 of file InlineCalculator.cpp.

Member Function Documentation

◆ add()

void Isis::CalculatorVariablePool::add ( const QString & key,
QVector< double > & values )
virtual

Add a parameter to the variable pool.

Some implementations can take advantage of this if desired but it is not standard.

Parameters
keyA string containing the name of the parameter to be added.
valuesA vector of double precision values to be added to the variable pool.
Exceptions
IException::Programmer"No implementation in Calculator variable pool to add value for variable."

Definition at line 711 of file InlineCalculator.cpp.

References Isis::IException::Programmer.

◆ exists()

bool Isis::CalculatorVariablePool::exists ( const QString & variable) const
virtual

Returns true so the real error can be reported.

Parameters
variableA string containing the variable we are looking for.
Returns
bool True

Definition at line 676 of file InlineCalculator.cpp.

◆ value()

QVector< double > Isis::CalculatorVariablePool::value ( const QString & variable,
const int & index = 0 ) const
virtual

Return vector of doubles for Calculator functions.

Parameters
variableA string containing the variable.
indexThe location in the pool.
Returns
QVector < double > A vector of calculator functions.
Exceptions
IException::Programmer"No implementation in Calculator variable pool to provide value for variable."

Definition at line 691 of file InlineCalculator.cpp.

References Isis::IException::Programmer.


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