source: issm/trunk-jpl/src/c/classes/Params/IntMatParam.cpp@ 18064

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

DEL: removed all FUNCTIONs

File size: 2.1 KB
Line 
1/*!\file IntMatParam.c
2 * \brief: implementation of the IntMatParam 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/*IntMatParam constructors and destructor*/
18IntMatParam::IntMatParam(){/*{{{*/
19 return;
20}
21/*}}}*/
22IntMatParam::IntMatParam(int in_enum_type,int* in_value, int in_M,int in_N){/*{{{*/
23
24 enum_type=in_enum_type;
25 M=in_M;
26 N=in_N;
27
28 value=xNew<int>(M*N);
29 xMemCpy<int>(value,in_value,M*N);
30}
31/*}}}*/
32IntMatParam::~IntMatParam(){/*{{{*/
33 xDelete<int>(value);
34 return;
35}
36/*}}}*/
37
38/*Object virtual functions definitions:*/
39void IntMatParam::Echo(void){/*{{{*/
40
41 _printf_("IntMatParam:\n");
42 _printf_(" enum: " << this->enum_type << " (" << EnumToStringx(this->enum_type) << ")\n");
43 _printf_(" matrix size: " << this->M << "x" << this->N << "\n");
44
45}
46/*}}}*/
47void IntMatParam::DeepEcho(void){/*{{{*/
48
49 int i,j;
50
51 _printf_("IntMatParam:\n");
52 _printf_(" enum: " << this->enum_type << " (" << EnumToStringx(this->enum_type) << ")\n");
53 _printf_(" matrix size: " << this->M << "x" << this->N << "\n");
54 for(i=0;i<this->M;i++){
55 for(j=0;j<this->N;j++){
56 _printf_("(" << i << "," << j << ") " << *(this->value+N*i+j) << "\n");
57 }
58 }
59}
60/*}}}*/
61int IntMatParam::Id(void){ return -1; }/*{{{*/
62/*}}}*/
63int IntMatParam::ObjectEnum(void){/*{{{*/
64
65 return IntMatParamEnum;
66
67}
68/*}}}*/
69Object* IntMatParam::copy() {/*{{{*/
70
71 return new IntMatParam(this->enum_type,this->value,this->M,this->N);
72
73}
74/*}}}*/
75
76/*IntMatParam virtual functions definitions: */
77void IntMatParam::GetParameterValue(int** pintarray,int* pM,int* pN){/*{{{*/
78 int* output=NULL;
79
80 output=xNew<int>(M*N);
81 xMemCpy<int>(output,value,M*N);
82
83 /*Assign output pointers:*/
84 if(pM) *pM=M;
85 if(pN) *pN=N;
86 *pintarray=output;
87}
88/*}}}*/
89void IntMatParam::SetValue(int* intarray,int in_M,int in_N){/*{{{*/
90
91 /*avoid leak: */
92 xDelete<int>(this->value);
93
94 this->value=xNew<int>(in_M*in_N);
95 xMemCpy<int>(this->value,intarray,in_M*in_N);
96
97 this->M=in_M;
98 this->N=in_N;
99}
100/*}}}*/
Note: See TracBrowser for help on using the repository browser.