source: issm/trunk/src/c/classes/Params/IntVecParam.cpp@ 20500

Last change on this file since 20500 was 20500, checked in by Mathieu Morlighem, 9 years ago

merged trunk-jpl and trunk for revision 20497

File size: 2.5 KB
Line 
1/*!\file IntVecParam.c
2 * \brief: implementation of the IntVecParam object
3 */
4
5/*header files: */
6/*{{{*/
7#ifdef HAVE_CONFIG_H
8 #include <config.h>
9#else
10#error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
11#endif
12
13#include "../classes.h"
14#include "../../shared/shared.h"
15/*}}}*/
16
17/*IntVecParam constructors and destructor*/
18IntVecParam::IntVecParam(){/*{{{*/
19 return;
20}
21/*}}}*/
22IntVecParam::IntVecParam(int in_enum_type,int* in_values, int in_M){/*{{{*/
23
24 enum_type=in_enum_type;
25 M=in_M;
26
27 if(M){
28 values=xNew<int>(M);
29 xMemCpy<int>(values,in_values,M);
30 }
31 else values=NULL;
32}
33/*}}}*/
34IntVecParam::IntVecParam(int in_enum_type,IssmDouble* in_values, int in_M){/*{{{*/
35
36 enum_type=in_enum_type;
37 M=in_M;
38
39 if(M){
40 values=xNew<int>(M);
41 for(int i=0;i<in_M;i++) values[i]=reCast<int>(in_values[i]);
42 }
43 else values=NULL;
44}
45/*}}}*/
46IntVecParam::~IntVecParam(){/*{{{*/
47 xDelete<int>(values);
48 return;
49}
50/*}}}*/
51
52/*Object virtual functions definitions:*/
53void IntVecParam::Echo(void){/*{{{*/
54
55 _printf_("IntVecParam:\n");
56 _printf_(" enum: " << this->enum_type << " (" << EnumToStringx(this->enum_type) << ")\n");
57 _printf_(" vector size: " << this->M << "\n");
58
59}
60/*}}}*/
61void IntVecParam::DeepEcho(void){/*{{{*/
62
63 int i;
64
65 _printf_("IntVecParam:\n");
66 _printf_(" enum: " << this->enum_type << " (" << EnumToStringx(this->enum_type) << ")\n");
67 _printf_(" vector size: " << this->M << "\n");
68 for(i=0;i<this->M;i++){
69 _printf_(i << " " << this->values[i] << "\n");
70 }
71}
72/*}}}*/
73int IntVecParam::Id(void){ return -1; }/*{{{*/
74/*}}}*/
75int IntVecParam::ObjectEnum(void){/*{{{*/
76
77 return IntVecParamEnum;
78
79}
80/*}}}*/
81Object* IntVecParam::copy() {/*{{{*/
82
83 return new IntVecParam(this->enum_type,this->values,this->M);
84
85}
86/*}}}*/
87void IntVecParam::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/
88
89 MARSHALLING_ENUM(IntVecParamEnum);
90
91 MARSHALLING(enum_type);
92 MARSHALLING(M);
93 if(M) {
94 MARSHALLING_DYNAMIC(values,int,M);
95 }
96 else values=NULL;
97
98}
99/*}}}*/
100
101/*IntVecParam virtual functions definitions: */
102void IntVecParam::GetParameterValue(int** pintarray,int* pM){/*{{{*/
103 int* output=NULL;
104
105 if(M){
106 output=xNew<int>(M);
107 xMemCpy<int>(output,values,M);
108 }
109
110 /*Assign output pointers:*/
111 if(pM) *pM=M;
112 *pintarray=output;
113}
114/*}}}*/
115void IntVecParam::SetValue(int* intarray,int in_M){/*{{{*/
116
117 /*avoid leak: */
118 xDelete<int>(this->values);
119
120 if(in_M){
121 this->values=xNew<int>(in_M);
122 xMemCpy<int>(this->values,intarray,in_M);
123 }
124 else this->values=NULL;
125
126 this->M=in_M;
127}
128/*}}}*/
Note: See TracBrowser for help on using the repository browser.