#include <Observation.h>
|
| Observation () |
|
| Observation (double x_in, double y_in, int xi_in, int yi_in, int index_in, double value_in) |
|
| Observation (double x_in, double y_in, double value_in) |
|
| ~Observation () |
|
bool | operator== (const Observation &ob) const |
|
Object * | copy () |
|
void | DeepEcho () |
|
double | distance (const Observation &ob) const |
|
void | Echo () |
|
int | Id () |
|
void | print () const |
|
void | Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction) |
|
int | ObjectEnum () |
|
void | WriteXYObs (const Observation &ob, double *px, double *py, double *pobs) |
|
void | WriteXYObs (double *px, double *py, double *pobs) |
|
virtual | ~Object () |
|
Definition at line 10 of file Observation.h.
◆ Observation() [1/3]
Observation::Observation |
( |
| ) |
|
◆ Observation() [2/3]
Observation::Observation |
( |
double |
x_in, |
|
|
double |
y_in, |
|
|
int |
xi_in, |
|
|
int |
yi_in, |
|
|
int |
index_in, |
|
|
double |
value_in |
|
) |
| |
◆ Observation() [3/3]
Observation::Observation |
( |
double |
x_in, |
|
|
double |
y_in, |
|
|
double |
value_in |
|
) |
| |
◆ ~Observation()
Observation::~Observation |
( |
| ) |
|
◆ operator==()
bool Observation::operator== |
( |
const Observation & |
ob | ) |
const |
Definition at line 75 of file Observation.cpp.
76 return (ob.
x == this->x && ob.
y == this->y && ob.
value == this->value);
◆ copy()
Object * Observation::copy |
( |
void |
| ) |
|
|
virtual |
◆ DeepEcho()
void Observation::DeepEcho |
( |
void |
| ) |
|
|
inlinevirtual |
◆ distance()
double Observation::distance |
( |
const Observation & |
ob | ) |
const |
Definition at line 78 of file Observation.cpp.
79 return std::sqrt( (std::pow( (ob.
x - this->x), 2 ) + std::pow((ob.
y - this->y), 2) ));
◆ Echo()
void Observation::Echo |
( |
void |
| ) |
|
|
virtual |
◆ Id()
int Observation::Id |
( |
void |
| ) |
|
|
inlinevirtual |
◆ print()
void Observation::print |
( |
void |
| ) |
const |
◆ Marshall()
void Observation::Marshall |
( |
char ** |
pmarshalled_data, |
|
|
int * |
pmarshalled_data_size, |
|
|
int |
marshall_direction |
|
) |
| |
|
inlinevirtual |
◆ ObjectEnum()
int Observation::ObjectEnum |
( |
void |
| ) |
|
|
inlinevirtual |
◆ WriteXYObs() [1/2]
void Observation::WriteXYObs |
( |
const Observation & |
ob, |
|
|
double * |
px, |
|
|
double * |
py, |
|
|
double * |
pobs |
|
) |
| |
◆ WriteXYObs() [2/2]
void Observation::WriteXYObs |
( |
double * |
px, |
|
|
double * |
py, |
|
|
double * |
pobs |
|
) |
| |
◆ xi
◆ yi
◆ index
◆ weight
double Observation::weight |
◆ value
double Observation::value |
The documentation for this class was generated from the following files: