OSFEG-C++
1.4.6
OpenSF Error Generation Library
|
#include <Analytical.h>
Public Member Functions | |
Analytical (string type) | |
Analytical (double value) | |
virtual | ~Analytical () |
virtual double | getValue (double time) |
![]() | |
Composite () | |
Composite (const Composite &)=delete | |
Composite & | operator= (const Composite &)=delete |
Composite (Composite &&)=default | |
Composite & | operator= (Composite &&)=default |
virtual | ~Composite () |
void | add (Composite *node) |
void | remove (Composite *node) |
Composite * | getChild (int index) |
bool | hasChildNodes () const |
Protected Attributes | |
double | value |
Fixed value (for float) | |
string | type |
Type of value (currently only "Float") | |
![]() | |
std::vector< Composite * > | children |
Composite * | parent |
Analytical class describes a group of error types.
Analytical::Analytical | ( | string | type | ) |
Class Analytical constructor.
type | String with the error type description. |
Analytical::Analytical | ( | double | value | ) |
Class Analytical constructor
value | Double with the default error type , float. |
|
virtual |
Class Analytical default destructor.
|
virtual |
Returns the value of an analytical error at the specified time.
time | Double with the time. |
Reimplemented from Composite.
Reimplemented in Step, Sampled, Polynomial, Harmonic, and BinaryOperations.