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

#include <IoModel.h>

Public Member Functions

 ~IoData ()
 
 IoData ()
 
 IoData (IssmDouble *matrix, int code, int layout_in, int M, int N, const char *name_in)
 

Data Fields

int code
 
IssmDoubledata
 
bool isindependent
 
int layout
 
int M
 
int N
 
char * name
 

Detailed Description

Definition at line 34 of file IoModel.h.

Constructor & Destructor Documentation

◆ ~IoData()

IoData::~IoData ( )

Definition at line 109 of file IoModel.cpp.

109  {/*{{{*/
110  xDelete<char>(this->name);
111  xDelete<IssmDouble>(this->data);
112 }

◆ IoData() [1/2]

IoData::IoData ( )

Definition at line 99 of file IoModel.cpp.

99  {/*{{{*/
100  this->isindependent = false;
101  this->name = NULL;
102  this->code = -1;
103  this->layout = -1;
104  this->M = 0;
105  this->N = 0;
106  this->data = NULL;
107 }

◆ IoData() [2/2]

IoData::IoData ( IssmDouble matrix,
int  code,
int  layout_in,
int  M,
int  N,
const char *  name_in 
)

Definition at line 114 of file IoModel.cpp.

114  {/*{{{*/
115  this->isindependent = false;
116  this->code = code_in;
117  this->layout = layout_in;
118  this->M = M_in;
119  this->N = N_in;
120  this->data = matrix; /*do not copy*/
121  _assert_(code_in==5 || code_in==6 || code_in==7);
122 
123  _assert_(name_in);
124  int len=strlen(name_in);
125  this->name=xNew<char>(len+1);
126  memcpy(this->name,name_in,(len+1)*sizeof(char));
127 }

Field Documentation

◆ code

int IoData::code

Definition at line 36 of file IoModel.h.

◆ data

IssmDouble* IoData::data

Definition at line 37 of file IoModel.h.

◆ isindependent

bool IoData::isindependent

Definition at line 38 of file IoModel.h.

◆ layout

int IoData::layout

Definition at line 39 of file IoModel.h.

◆ M

int IoData::M

Definition at line 40 of file IoModel.h.

◆ N

int IoData::N

Definition at line 40 of file IoModel.h.

◆ name

char* IoData::name

Definition at line 41 of file IoModel.h.


The documentation for this class was generated from the following files:
IoData::isindependent
bool isindependent
Definition: IoModel.h:38
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
IoData::data
IssmDouble * data
Definition: IoModel.h:37
IoData::N
int N
Definition: IoModel.h:40
IoData::name
char * name
Definition: IoModel.h:41
IoData::code
int code
Definition: IoModel.h:36
IoData::layout
int layout
Definition: IoModel.h:39
IoData::M
int M
Definition: IoModel.h:40