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

Last change on this file since 16560 was 16560, checked in by Mathieu Morlighem, 11 years ago

merged trunk-jpl and trunk for revision 16554

File size: 2.7 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*/
18/*FUNCTION IntVecParam::IntVecParam(){{{*/
19IntVecParam::IntVecParam(){
20 return;
21}
22/*}}}*/
23/*FUNCTION IntVecParam::IntVecParam(int enum_type,int* values,int M){{{*/
24IntVecParam::IntVecParam(int in_enum_type,int* in_values, int in_M){
25
26 enum_type=in_enum_type;
27 M=in_M;
28
29 if(M){
30 values=xNew<int>(M);
31 xMemCpy<int>(values,in_values,M);
32 }
33 else values=NULL;
34}
35/*}}}*/
36/*FUNCTION IntVecParam::IntVecParam(int enum_type,IssmDouble* values,int M){{{*/
37IntVecParam::IntVecParam(int in_enum_type,IssmDouble* in_values, int in_M){
38
39 enum_type=in_enum_type;
40 M=in_M;
41
42 if(M){
43 values=xNew<int>(M);
44 for(int i=0;i<in_M;i++) values[i]=reCast<int>(in_values[i]);
45 }
46 else values=NULL;
47}
48/*}}}*/
49/*FUNCTION IntVecParam::~IntVecParam(){{{*/
50IntVecParam::~IntVecParam(){
51 xDelete<int>(values);
52 return;
53}
54/*}}}*/
55
56/*Object virtual functions definitions:*/
57/*FUNCTION IntVecParam::Echo {{{*/
58void IntVecParam::Echo(void){
59
60 _printf_("IntVecParam:\n");
61 _printf_(" enum: " << this->enum_type << " (" << EnumToStringx(this->enum_type) << ")\n");
62 _printf_(" vector size: " << this->M << "\n");
63
64}
65/*}}}*/
66/*FUNCTION IntVecParam::DeepEcho{{{*/
67void IntVecParam::DeepEcho(void){
68
69 int i;
70
71 _printf_("IntVecParam:\n");
72 _printf_(" enum: " << this->enum_type << " (" << EnumToStringx(this->enum_type) << ")\n");
73 _printf_(" vector size: " << this->M << "\n");
74 for(i=0;i<this->M;i++){
75 _printf_(i << " " << this->values[i] << "\n");
76 }
77}
78/*}}}*/
79/*FUNCTION IntVecParam::Id{{{*/
80int IntVecParam::Id(void){ return -1; }
81/*}}}*/
82/*FUNCTION IntVecParam::ObjectEnum{{{*/
83int IntVecParam::ObjectEnum(void){
84
85 return IntVecParamEnum;
86
87}
88/*}}}*/
89/*FUNCTION IntVecParam::copy{{{*/
90Object* IntVecParam::copy() {
91
92 return new IntVecParam(this->enum_type,this->values,this->M);
93
94}
95/*}}}*/
96
97/*IntVecParam virtual functions definitions: */
98/*FUNCTION IntVecParam::GetParameterValue{{{*/
99void IntVecParam::GetParameterValue(int** pintarray,int* pM){
100 int* output=NULL;
101
102 if(M){
103 output=xNew<int>(M);
104 xMemCpy<int>(output,values,M);
105 }
106
107 /*Assign output pointers:*/
108 if(pM) *pM=M;
109 *pintarray=output;
110}
111/*}}}*/
112/*FUNCTION IntVecParam::SetValue{{{*/
113void IntVecParam::SetValue(int* intarray,int in_M){
114
115 /*avoid leak: */
116 xDelete<int>(this->values);
117
118 if(in_M){
119 this->values=xNew<int>(in_M);
120 xMemCpy<int>(this->values,intarray,in_M);
121 }
122 else this->values=NULL;
123
124 this->M=in_M;
125}
126/*}}}*/
Note: See TracBrowser for help on using the repository browser.