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

#include <SealevelMasks.h>

Public Member Functions

 SealevelMasks (int nel)
 
 ~SealevelMasks ()
 

Data Fields

bool * isiceonly
 
bool * isfullyfloating
 
bool * notfullygrounded
 
bool * isoceanin
 

Detailed Description

Definition at line 10 of file SealevelMasks.h.

Constructor & Destructor Documentation

◆ SealevelMasks()

SealevelMasks::SealevelMasks ( int  nel)
inline

Definition at line 20 of file SealevelMasks.h.

20  {
21  /*allocate fields:*/
22  this->isiceonly=xNew<bool>(nel);
23  this->isfullyfloating=xNew<bool>(nel);
24  this->notfullygrounded=xNew<bool>(nel);
25  this->isoceanin=xNew<bool>(nel);
26  };

◆ ~SealevelMasks()

SealevelMasks::~SealevelMasks ( )
inline

Definition at line 27 of file SealevelMasks.h.

27  {
28  xDelete<bool>(this->isiceonly);
29  xDelete<bool>(this->isfullyfloating);
30  xDelete<bool>(this->notfullygrounded);
31  xDelete<bool>(this->isoceanin);
32  };

Field Documentation

◆ isiceonly

bool* SealevelMasks::isiceonly

Definition at line 14 of file SealevelMasks.h.

◆ isfullyfloating

bool* SealevelMasks::isfullyfloating

Definition at line 15 of file SealevelMasks.h.

◆ notfullygrounded

bool* SealevelMasks::notfullygrounded

Definition at line 16 of file SealevelMasks.h.

◆ isoceanin

bool* SealevelMasks::isoceanin

Definition at line 17 of file SealevelMasks.h.


The documentation for this class was generated from the following file:
SealevelMasks::isiceonly
bool * isiceonly
Definition: SealevelMasks.h:14
SealevelMasks::isfullyfloating
bool * isfullyfloating
Definition: SealevelMasks.h:15
SealevelMasks::notfullygrounded
bool * notfullygrounded
Definition: SealevelMasks.h:16
SealevelMasks::isoceanin
bool * isoceanin
Definition: SealevelMasks.h:17