Ice Sheet System Model  4.18
Code documentation
ElementInput2.cpp
Go to the documentation of this file.
1 
5 #ifdef HAVE_CONFIG_H
6  #include <config.h>
7 #else
8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
9 #endif
10 
11 #include "../classes.h"
12 #include "../../shared/shared.h"
13 #include "./ElementInput2.h"
14 
15 /*ElementInput2 constructors and destructor*/
17  this->interpolation = -1;
18  this->M = -1;
19  this->N = -1;
20  this->isserved = false;
21  this->element_values = NULL;
22  this->values = NULL;
23 }
24 /*}}}*/
26  if(this->element_values) xDelete<IssmDouble>(this->element_values);
27  if(this->values) xDelete<IssmDouble>(this->values);
28 }
29 /*}}}*/
30 
31 /*Numerics*/
33 
34  return this->interpolation;
35 
36 }/*}}}*/
ElementInput2::~ElementInput2
~ElementInput2()
Definition: ElementInput2.cpp:25
ElementInput2.h
ElementInput2::interpolation
int interpolation
Definition: ElementInput2.h:12
ElementInput2::ElementInput2
ElementInput2()
Definition: ElementInput2.cpp:16
ElementInput2::values
IssmDouble * values
Definition: ElementInput2.h:15
ElementInput2::N
int N
Definition: ElementInput2.h:13
ElementInput2::GetInputInterpolationType
int GetInputInterpolationType()
Definition: ElementInput2.cpp:32
ElementInput2::element_values
IssmDouble * element_values
Definition: ElementInput2.h:18
ElementInput2::M
int M
Definition: ElementInput2.h:13
ElementInput2::isserved
bool isserved
Definition: ElementInput2.h:14