1 | /*!\file PentaVertexInput.c
|
---|
2 | * \brief: implementation of the PentaVertexInput object
|
---|
3 | */
|
---|
4 |
|
---|
5 | #ifdef HAVE_CONFIG_H
|
---|
6 | #include "config.h"
|
---|
7 | #else
|
---|
8 | #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
|
---|
9 | #endif
|
---|
10 |
|
---|
11 | #include "stdio.h"
|
---|
12 | #include <string.h>
|
---|
13 | #include "../objects.h"
|
---|
14 | #include "../../EnumDefinitions/EnumDefinitions.h"
|
---|
15 | #include "../../shared/shared.h"
|
---|
16 | #include "../../DataSet/DataSet.h"
|
---|
17 | #include "../../include/include.h"
|
---|
18 |
|
---|
19 | /*Object constructors and destructor*/
|
---|
20 | /*FUNCTION PentaVertexInput::PentaVertexInput(){{{1*/
|
---|
21 | PentaVertexInput::PentaVertexInput(){
|
---|
22 | return;
|
---|
23 | }
|
---|
24 | /*}}}*/
|
---|
25 | /*FUNCTION PentaVertexInput::PentaVertexInput(double* values){{{1*/
|
---|
26 | PentaVertexInput::PentaVertexInput(int in_enum_type,double* in_values){
|
---|
27 |
|
---|
28 | enum_type=in_enum_type;
|
---|
29 | values[0]=in_values[0];
|
---|
30 | values[1]=in_values[1];
|
---|
31 | values[2]=in_values[2];
|
---|
32 | values[3]=in_values[3];
|
---|
33 | values[4]=in_values[4];
|
---|
34 | values[5]=in_values[5];
|
---|
35 | }
|
---|
36 | /*}}}*/
|
---|
37 | /*FUNCTION PentaVertexInput::~PentaVertexInput(){{{1*/
|
---|
38 | PentaVertexInput::~PentaVertexInput(){
|
---|
39 | return;
|
---|
40 | }
|
---|
41 | /*}}}*/
|
---|
42 |
|
---|
43 | /*Object management*/
|
---|
44 | /*FUNCTION PentaVertexInput::copy{{{1*/
|
---|
45 | Object* PentaVertexInput::copy() {
|
---|
46 |
|
---|
47 | return new PentaVertexInput(this->enum_type,this->values);
|
---|
48 |
|
---|
49 | }
|
---|
50 | /*}}}*/
|
---|
51 | /*FUNCTION PentaVertexInput::DeepEcho{{{1*/
|
---|
52 | void PentaVertexInput::DeepEcho(void){
|
---|
53 |
|
---|
54 | printf("PentaVertexInput:\n");
|
---|
55 | printf(" enum: %i\n",this->enum_type);
|
---|
56 | printf(" %g|%g|%g|%g|%g|%g\n",this->values[0],this->values[1],this->values[2],this->values[3],this->values[4],this->values[5]);
|
---|
57 | }
|
---|
58 | /*}}}*/
|
---|
59 | /*FUNCTION PentaVertexInput::Demarshall{{{1*/
|
---|
60 | void PentaVertexInput::Demarshall(char** pmarshalled_dataset){
|
---|
61 |
|
---|
62 | char* marshalled_dataset=NULL;
|
---|
63 | int i;
|
---|
64 |
|
---|
65 | /*recover marshalled_dataset: */
|
---|
66 | marshalled_dataset=*pmarshalled_dataset;
|
---|
67 |
|
---|
68 | /*this time, no need to get enum type, the pointer directly points to the beginning of the
|
---|
69 | *object data (thanks to DataSet::Demarshall):*/
|
---|
70 | memcpy(&enum_type,marshalled_dataset,sizeof(enum_type));marshalled_dataset+=sizeof(enum_type);
|
---|
71 | memcpy(&values,marshalled_dataset,sizeof(values));marshalled_dataset+=sizeof(values);
|
---|
72 |
|
---|
73 | /*return: */
|
---|
74 | *pmarshalled_dataset=marshalled_dataset;
|
---|
75 | return;
|
---|
76 | }
|
---|
77 | /*}}}*/
|
---|
78 | /*FUNCTION PentaVertexInput::Echo {{{1*/
|
---|
79 | void PentaVertexInput::Echo(void){
|
---|
80 | this->DeepEcho();
|
---|
81 | }
|
---|
82 | /*}}}*/
|
---|
83 | /*FUNCTION PentaVertexInput::Enum{{{1*/
|
---|
84 | int PentaVertexInput::Enum(void){
|
---|
85 |
|
---|
86 | return PentaVertexInputEnum;
|
---|
87 |
|
---|
88 | }
|
---|
89 | /*}}}*/
|
---|
90 | /*FUNCTION PentaVertexInput::EnumType{{{1*/
|
---|
91 | int PentaVertexInput::EnumType(void){
|
---|
92 |
|
---|
93 | return this->enum_type;
|
---|
94 |
|
---|
95 | }
|
---|
96 | /*}}}*/
|
---|
97 | /*FUNCTION PentaVertexInput::Id{{{1*/
|
---|
98 | int PentaVertexInput::Id(void){ return -1; }
|
---|
99 | /*}}}*/
|
---|
100 | /*FUNCTION PentaVertexInput::Marshall{{{1*/
|
---|
101 | void PentaVertexInput::Marshall(char** pmarshalled_dataset){
|
---|
102 |
|
---|
103 | char* marshalled_dataset=NULL;
|
---|
104 | int enum_value=0;
|
---|
105 |
|
---|
106 | /*recover marshalled_dataset: */
|
---|
107 | marshalled_dataset=*pmarshalled_dataset;
|
---|
108 |
|
---|
109 | /*get enum value of PentaVertexInput: */
|
---|
110 | enum_value=PentaVertexInputEnum;
|
---|
111 |
|
---|
112 | /*marshall enum: */
|
---|
113 | memcpy(marshalled_dataset,&enum_value,sizeof(enum_value));marshalled_dataset+=sizeof(enum_value);
|
---|
114 |
|
---|
115 | /*marshall PentaVertexInput data: */
|
---|
116 | memcpy(marshalled_dataset,&enum_type,sizeof(enum_type));marshalled_dataset+=sizeof(enum_type);
|
---|
117 | memcpy(marshalled_dataset,&values,sizeof(values));marshalled_dataset+=sizeof(values);
|
---|
118 |
|
---|
119 | *pmarshalled_dataset=marshalled_dataset;
|
---|
120 | }
|
---|
121 | /*}}}*/
|
---|
122 | /*FUNCTION PentaVertexInput::MarshallSize{{{1*/
|
---|
123 | int PentaVertexInput::MarshallSize(){
|
---|
124 |
|
---|
125 | return sizeof(values)+
|
---|
126 | +sizeof(enum_type)+
|
---|
127 | +sizeof(int); //sizeof(int) for enum value
|
---|
128 | }
|
---|
129 | /*}}}*/
|
---|
130 | /*FUNCTION PentaVertexInput::MyRank{{{1*/
|
---|
131 | int PentaVertexInput::MyRank(void){
|
---|
132 | extern int my_rank;
|
---|
133 | return my_rank;
|
---|
134 | }
|
---|
135 | /*}}}*/
|
---|
136 |
|
---|
137 | /*Object functions*/
|
---|
138 | /*FUNCTION PentaVertexInput::GetParameterValue(bool* pvalue) {{{1*/
|
---|
139 | void PentaVertexInput::GetParameterValue(bool* pvalue){ISSMERROR(" not supported yet!");}
|
---|
140 | /*}}}*/
|
---|
141 | /*FUNCTION PentaVertexInput::GetParameterValue(int* pvalue){{{1*/
|
---|
142 | void PentaVertexInput::GetParameterValue(int* pvalue){ISSMERROR(" not supported yet!");}
|
---|
143 | /*}}}*/
|
---|
144 | /*FUNCTION PentaVertexInput::GetParameterValue(double* pvalue){{{1*/
|
---|
145 | void PentaVertexInput::GetParameterValue(double* pvalue){ISSMERROR(" not supported yet!");}
|
---|
146 | /*}}}*/
|
---|
147 | /*FUNCTION PentaVertexInput::GetParameterValue(double* pvalue,Node* node){{{1*/
|
---|
148 | void PentaVertexInput::GetParameterValue(double* pvalue,Node* node){ISSMERROR(" not supported yet!");}
|
---|
149 | /*}}}*/
|
---|
150 | /*FUNCTION PentaVertexInput::GetParameterValue(double* pvalue,Node* node1,Node* node2,double gauss_coord){{{1*/
|
---|
151 | void PentaVertexInput::GetParameterValue(double* pvalue,Node* node1,Node* node2,double gauss_coord){ISSMERROR(" not supported yet!");}
|
---|
152 | /*}}}*/
|
---|
153 | /*FUNCTION PentaVertexInput::GetParameterValue(double* pvalue,double* gauss){{{1*/
|
---|
154 | void PentaVertexInput::GetParameterValue(double* pvalue,double* gauss){ISSMERROR(" not supported yet!");}
|
---|
155 | /*}}}*/
|
---|
156 | /*FUNCTION PentaVertexInput::GetParameterValue(double* pvalue,double* gauss,double defaultvalue){{{1*/
|
---|
157 | void PentaVertexInput::GetParameterValue(double* pvalue,double* gauss,double defaultvalue){ISSMERROR(" not supported yet!");}
|
---|
158 | /*}}}*/
|
---|
159 | /*FUNCTION PentaVertexInput::GetParameterValues(double* values,double* gauss_pointers, int numgauss){{{1*/
|
---|
160 | void PentaVertexInput::GetParameterValues(double* values,double* gauss_pointers, int numgauss){ISSMERROR(" not supported yet!");}
|
---|
161 | /*}}}*/
|
---|
162 | /*FUNCTION PentaVertexInput::GetParameterDerivativeValue(double* derivativevalues, double* xyz_list, double* gauss){{{1*/
|
---|
163 | void PentaVertexInput::GetParameterDerivativeValue(double* derivativevalues, double* xyz_list, double* gauss){ISSMERROR(" not supported yet!");}
|
---|
164 | /*}}}*/
|
---|
165 | /*FUNCTION PentaVertexInput::ChangeEnum(int newenumtype){{{1*/
|
---|
166 | void PentaVertexInput::ChangeEnum(int newenumtype){
|
---|
167 | this->enum_type=newenumtype;
|
---|
168 | }
|
---|
169 | /*}}}*/
|
---|
170 | /*FUNCTION PentaVertexInput::GetParameterAverage(double* pvalue){{{1*/
|
---|
171 | void PentaVertexInput::GetParameterAverage(double* pvalue){
|
---|
172 | *pvalue=1./6.*(values[0]+values[1]+values[2]+values[3]+values[4]+values[5]);
|
---|
173 | }
|
---|
174 | /*}}}*/
|
---|