Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Private Attributes
BoolInput2 Class Reference

#include <BoolInput2.h>

Inheritance diagram for BoolInput2:
Input2 Object

Public Member Functions

 BoolInput2 ()
 
 BoolInput2 (int size_in)
 
 ~BoolInput2 ()
 
Input2copy ()
 
void DeepEcho ()
 
void Echo ()
 
int Id ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
int ObjectEnum ()
 
void GetInput (bool *pvalue, int index)
 
void SetInput (int index, bool value)
 
- Public Member Functions inherited from Input2
int InstanceEnum ()
 
void ChangeEnum (int newenumtype)
 
virtual ~Input2 ()
 
virtual void Configure (Parameters *parameters)
 
virtual void GetInputAverage (IssmDouble *pvalue)
 
virtual IssmDouble GetInputMax (void)
 
virtual IssmDouble GetInputMaxAbs (void)
 
virtual IssmDouble GetInputMin (void)
 
virtual void GetInputDerivativeValue (IssmDouble *derivativevalues, IssmDouble *xyz_list, Gauss *gauss)
 
virtual void GetInputValue (IssmDouble *pvalue, Gauss *gauss)
 
virtual int GetInputInterpolationType ()
 
virtual SegInput2GetSegInput ()
 
virtual TriaInput2GetTriaInput ()
 
virtual PentaInput2GetPentaInput ()
 
virtual void AXPY (Input2 *xinput, IssmDouble scalar)
 
virtual void PointWiseMult (Input2 *xinput)
 
virtual void Pow (IssmDouble scale_factor)
 
virtual void Scale (IssmDouble scale_factor)
 
virtual int GetResultArraySize (void)
 
virtual int GetResultInterpolation (void)
 
virtual int GetResultNumberOfNodes (void)
 
- Public Member Functions inherited from Object
virtual ~Object ()
 

Private Attributes

int size
 
bool * values
 

Detailed Description

Definition at line 7 of file BoolInput2.h.

Constructor & Destructor Documentation

◆ BoolInput2() [1/2]

BoolInput2::BoolInput2 ( )

Definition at line 16 of file BoolInput2.cpp.

16  {/*{{{*/
17  this->size = -1;
18  this->values = NULL;
19 }

◆ BoolInput2() [2/2]

BoolInput2::BoolInput2 ( int  size_in)

Definition at line 21 of file BoolInput2.cpp.

21  {/*{{{*/
22  _assert_(size_in>0);
23  _assert_(size_in<1e11);
24  this->size = size_in;
25  this->values = xNew<bool>(size_in);
26 }

◆ ~BoolInput2()

BoolInput2::~BoolInput2 ( )

Definition at line 28 of file BoolInput2.cpp.

28  {/*{{{*/
29  xDelete<bool>(this->values);
30 }

Member Function Documentation

◆ copy()

Input2 * BoolInput2::copy ( void  )
virtual

Implements Input2.

Definition at line 34 of file BoolInput2.cpp.

34  {/*{{{*/
35 
36  _assert_(this->size);
37  BoolInput2* output = new BoolInput2(this->size);
38  xMemCpy<bool>(output->values,this->values,this->size);
39 
40  return output;
41 
42 }

◆ DeepEcho()

void BoolInput2::DeepEcho ( void  )
virtual

Implements Object.

Definition at line 44 of file BoolInput2.cpp.

44  {/*{{{*/
45 
46  _printf_("BoolInput2 Echo:\n");
47  _printf_(" Size: "<<size<<"\n");
48  printarray(this->values,this->size);
49 }

◆ Echo()

void BoolInput2::Echo ( void  )
virtual

Implements Object.

Definition at line 51 of file BoolInput2.cpp.

51  {/*{{{*/
52  this->DeepEcho();
53 }

◆ Id()

int BoolInput2::Id ( void  )
virtual

Implements Object.

Definition at line 55 of file BoolInput2.cpp.

55 { return -1; }/*{{{*/

◆ Marshall()

void BoolInput2::Marshall ( char **  pmarshalled_data,
int *  pmarshalled_data_size,
int  marshall_direction 
)
virtual

Implements Object.

Definition at line 57 of file BoolInput2.cpp.

57  { /*{{{*/
58 
60  MARSHALLING(this->size);
61  if(this->size > 0){
62  MARSHALLING_DYNAMIC(this->values,bool,this->size)
63  }
64  else this->values = NULL;
65 
66 }

◆ ObjectEnum()

int BoolInput2::ObjectEnum ( void  )
virtual

Implements Object.

Definition at line 68 of file BoolInput2.cpp.

68  {/*{{{*/
69 
70  return BoolInput2Enum;
71 
72 }

◆ GetInput()

void BoolInput2::GetInput ( bool *  pvalue,
int  index 
)

Definition at line 76 of file BoolInput2.cpp.

76  {/*{{{*/
77 
78  _assert_(index>=0);
79  _assert_(index<this->size);
80 
81  *pvalue = this->values[index];
82 }

◆ SetInput()

void BoolInput2::SetInput ( int  index,
bool  value 
)

Definition at line 84 of file BoolInput2.cpp.

84  {/*{{{*/
85 
86  _assert_(index>=0);
87  _assert_(index<this->size);
88 
89  this->values[index] = value;
90 }

Field Documentation

◆ size

int BoolInput2::size
private

Definition at line 10 of file BoolInput2.h.

◆ values

bool* BoolInput2::values
private

Definition at line 11 of file BoolInput2.h.


The documentation for this class was generated from the following files:
BoolInput2::BoolInput2
BoolInput2()
Definition: BoolInput2.cpp:16
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
BoolInput2::values
bool * values
Definition: BoolInput2.h:11
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
MARSHALLING_ENUM
#define MARSHALLING_ENUM(EN)
Definition: Marshalling.h:14
BoolInput2
Definition: BoolInput2.h:7
MARSHALLING_DYNAMIC
#define MARSHALLING_DYNAMIC(FIELD, TYPE, SIZE)
Definition: Marshalling.h:61
MARSHALLING
#define MARSHALLING(FIELD)
Definition: Marshalling.h:29
BoolInput2::size
int size
Definition: BoolInput2.h:10
BoolInput2::DeepEcho
void DeepEcho()
Definition: BoolInput2.cpp:44
printarray
void printarray(IssmPDouble *array, int lines, int cols=1)
Definition: PrintArrays.cpp:6
BoolInput2Enum
@ BoolInput2Enum
Definition: EnumDefinitions.h:995