Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Data Fields
Observation Class Reference

#include <Observation.h>

Inheritance diagram for Observation:
Object

Public Member Functions

 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
 
Objectcopy ()
 
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)
 
- Public Member Functions inherited from Object
virtual ~Object ()
 

Data Fields

double x
 
double y
 
int xi
 
int yi
 
int index
 
double weight
 
double value
 

Detailed Description

Definition at line 10 of file Observation.h.

Constructor & Destructor Documentation

◆ Observation() [1/3]

Observation::Observation ( )

Definition at line 11 of file Observation.cpp.

11  {/*{{{*/
12  return;
13 }

◆ Observation() [2/3]

Observation::Observation ( double  x_in,
double  y_in,
int  xi_in,
int  yi_in,
int  index_in,
double  value_in 
)

Definition at line 15 of file Observation.cpp.

15  {/*{{{*/
16 
17  this->x = x_in;
18  this->y = y_in;
19  this->xi = xi_in;
20  this->yi = yi_in;
21  this->index = index_in;
22  this->value = value_in;
23  this->weight = 1.;
24 
25 }

◆ Observation() [3/3]

Observation::Observation ( double  x_in,
double  y_in,
double  value_in 
)

Definition at line 27 of file Observation.cpp.

27  {
28  this->x = x_in;
29  this->y = y_in;
30  this->value = value_in;
31 
32  this->xi = 0;
33  this->yi = 0;
34  this->index = 0;
35  this->weight = 0.;
36 }

◆ ~Observation()

Observation::~Observation ( )

Definition at line 37 of file Observation.cpp.

37  {/*{{{*/
38  return;
39 }

Member Function Documentation

◆ operator==()

bool Observation::operator== ( const Observation ob) const

Definition at line 75 of file Observation.cpp.

75  {/*{{{*/
76  return (ob.x == this->x && ob.y == this->y && ob.value == this->value);
77 }/*}}}*/

◆ copy()

Object * Observation::copy ( void  )
virtual

Implements Object.

Definition at line 43 of file Observation.cpp.

43  {/*{{{*/
44 
45  Observation* observation = new Observation(this->x,this->y,this->xi,this->yi,this->index,this->value);
46 
47  observation->weight = this->weight;
48 
49  return (Object*) observation;
50 
51 }

◆ DeepEcho()

void Observation::DeepEcho ( void  )
inlinevirtual

Implements Object.

Definition at line 28 of file Observation.h.

28 {_error_("Not implemented yet"); };

◆ distance()

double Observation::distance ( const Observation ob) const

Definition at line 78 of file Observation.cpp.

78  {/*{{{*/
79  return std::sqrt( (std::pow( (ob.x - this->x), 2 ) + std::pow((ob.y - this->y), 2) ));
80 }

◆ Echo()

void Observation::Echo ( void  )
virtual

Implements Object.

Definition at line 53 of file Observation.cpp.

53  {/*{{{*/
54 
55  _printf_("Observation\n");
56  _printf_(" index : " << this->index << "\n");
57  _printf_(" x : " << this->x << "\n");
58  _printf_(" y : " << this->y << "\n");
59  _printf_(" xi : \n"); printbinary(this->xi); _printf_("\n");
60  _printf_(" yi : \n"); printbinary(this->yi); _printf_("\n");
61  _printf_(" weight: " << this->weight << "\n");
62  _printf_(" value : " << this->value << "\n");
63 }

◆ Id()

int Observation::Id ( void  )
inlinevirtual

Implements Object.

Definition at line 31 of file Observation.h.

31 {_error_("Not implemented yet"); };

◆ print()

void Observation::print ( void  ) const

Definition at line 82 of file Observation.cpp.

82  {/*{{{*/
83 
84  _printf_("Observation\n");
85  _printf_(" x : " << this->x << "\n");
86  _printf_(" y : " << this->y << "\n");
87  _printf_(" value : " << this->value << "\n");
88 }

◆ Marshall()

void Observation::Marshall ( char **  pmarshalled_data,
int *  pmarshalled_data_size,
int  marshall_direction 
)
inlinevirtual

Implements Object.

Definition at line 33 of file Observation.h.

33 { _error_("not implemented yet!");};

◆ ObjectEnum()

int Observation::ObjectEnum ( void  )
inlinevirtual

Implements Object.

Definition at line 34 of file Observation.h.

34 {_error_("Not implemented yet"); };

◆ WriteXYObs() [1/2]

void Observation::WriteXYObs ( const Observation ob,
double *  px,
double *  py,
double *  pobs 
)

Definition at line 90 of file Observation.cpp.

90  {/*{{{*/
91  *px = ob.x;
92  *py = ob.y;
93  *pobs = ob.value;
94 }/*}}}*/

◆ WriteXYObs() [2/2]

void Observation::WriteXYObs ( double *  px,
double *  py,
double *  pobs 
)

Definition at line 67 of file Observation.cpp.

67  {/*{{{*/
68  *px = this->x;
69  *py = this->y;
70  *pobs = this->value;
71 }

Field Documentation

◆ x

double Observation::x

Definition at line 13 of file Observation.h.

◆ y

double Observation::y

Definition at line 13 of file Observation.h.

◆ xi

int Observation::xi

Definition at line 14 of file Observation.h.

◆ yi

int Observation::yi

Definition at line 14 of file Observation.h.

◆ index

int Observation::index

Definition at line 15 of file Observation.h.

◆ weight

double Observation::weight

Definition at line 16 of file Observation.h.

◆ value

double Observation::value

Definition at line 17 of file Observation.h.


The documentation for this class was generated from the following files:
Observation::Observation
Observation()
Definition: Observation.cpp:11
Observation
Definition: Observation.h:10
Observation::x
double x
Definition: Observation.h:13
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
printbinary
void printbinary(int n)
Definition: PrintArrays.cpp:76
Observation::yi
int yi
Definition: Observation.h:14
Object
Definition: Object.h:13
Observation::xi
int xi
Definition: Observation.h:14
Observation::y
double y
Definition: Observation.h:13
Observation::index
int index
Definition: Observation.h:15
Observation::weight
double weight
Definition: Observation.h:16
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
Observation::value
double value
Definition: Observation.h:17