Changeset 6163 for issm/trunk
- Timestamp:
- 10/06/10 10:57:18 (15 years ago)
- Location:
- issm/trunk/src/c/objects/Params
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Params/BoolParam.h
r5103 r6163 9 9 /*Headers:*/ 10 10 /*{{{1*/ 11 12 11 #ifdef HAVE_CONFIG_H 13 12 #include "config.h" … … 20 19 #endif 21 20 22 23 21 #include "./Param.h" 24 22 #include "../../include/include.h" 25 23 #include "../../shared/shared.h" 26 #include "../../include/include.h"27 #include "../../include/include.h"28 24 /*}}}*/ 29 25 -
issm/trunk/src/c/objects/Params/DoubleMatArrayParam.h
r5103 r6163 9 9 /*Headers:*/ 10 10 /*{{{1*/ 11 12 11 #ifdef HAVE_CONFIG_H 13 12 #include "config.h" … … 20 19 #endif 21 20 22 23 21 #include "./Param.h" 24 22 #include "../../include/include.h" 25 23 #include "../../shared/shared.h" 26 #include "../../include/include.h"27 #include "../../include/include.h"28 24 /*}}}*/ 29 25 -
issm/trunk/src/c/objects/Params/DoubleMatParam.cpp
r5103 r6163 155 155 void DoubleMatParam::GetParameterValue(double** pdoublearray,int* pM,int* pN){ 156 156 double* output=NULL; 157 int M,N; 158 159 M=this->M; 160 N=this->N; 157 161 158 output=(double*)xmalloc((int)(M*N*sizeof(double))); 162 159 memcpy(output,value,M*N*sizeof(double)); … … 180 177 mxArray* pfield2=NULL; 181 178 double* doublemat=NULL; 182 int M,N;183 179 char* name=NULL; 184 180 185 181 name=this->GetParameterName(); 186 this->GetParameterValue(&doublemat, &M,&N);182 this->GetParameterValue(&doublemat,NULL,NULL); 187 183 188 184 pfield=mxCreateDoubleMatrix(0,0,mxREAL); -
issm/trunk/src/c/objects/Params/DoubleMatParam.h
r5103 r6163 9 9 /*Headers:*/ 10 10 /*{{{1*/ 11 12 11 #ifdef HAVE_CONFIG_H 13 12 #include "config.h" … … 20 19 #endif 21 20 22 23 21 #include "./Param.h" 24 22 #include "../../include/include.h" 25 23 #include "../../shared/shared.h" 26 #include "../../include/include.h"27 #include "../../include/include.h"28 24 /*}}}*/ 29 25 -
issm/trunk/src/c/objects/Params/DoubleParam.h
r5103 r6163 9 9 /*Headers:*/ 10 10 /*{{{1*/ 11 12 11 #ifdef HAVE_CONFIG_H 13 12 #include "config.h" … … 20 19 #endif 21 20 22 23 21 #include "./Param.h" 24 22 #include "../../include/include.h" 25 23 #include "../../shared/shared.h" 26 #include "../../include/include.h"27 #include "../../include/include.h"28 24 /*}}}*/ 29 25 -
issm/trunk/src/c/objects/Params/DoubleVecParam.cpp
r5103 r6163 171 171 char* name=NULL; 172 172 double* doublevec=NULL; 173 int M;174 173 mxArray* pfield=NULL; 175 174 176 this->GetParameterValue(&doublevec, &M);175 this->GetParameterValue(&doublevec,NULL); 177 176 name=this->GetParameterName(); 178 177 -
issm/trunk/src/c/objects/Params/DoubleVecParam.h
r6014 r6163 9 9 /*Headers:*/ 10 10 /*{{{1*/ 11 12 11 #ifdef HAVE_CONFIG_H 13 12 #include "config.h" … … 20 19 #endif 21 20 22 23 21 #include "./Param.h" 24 22 #include "../../include/include.h" 25 23 #include "../../shared/shared.h" 26 #include "../../include/include.h"27 #include "../../include/include.h"28 24 /*}}}*/ 29 25 -
issm/trunk/src/c/objects/Params/FileParam.h
r5103 r6163 9 9 /*Headers:*/ 10 10 /*{{{1*/ 11 12 11 #ifdef HAVE_CONFIG_H 13 12 #include "config.h" … … 23 22 #include "../../include/include.h" 24 23 #include "../../shared/shared.h" 25 #include "../../include/include.h"26 #include "../../include/include.h"27 24 /*}}}*/ 28 25 -
issm/trunk/src/c/objects/Params/IntParam.h
r5103 r6163 9 9 /*Headers:*/ 10 10 /*{{{1*/ 11 12 11 #ifdef HAVE_CONFIG_H 13 12 #include "config.h" … … 23 22 #include "../../include/include.h" 24 23 #include "../../shared/shared.h" 25 #include "../../include/include.h"26 #include "../../include/include.h"27 24 /*}}}*/ 28 25 -
issm/trunk/src/c/objects/Params/PetscMatParam.h
r5103 r6163 9 9 /*Headers:*/ 10 10 /*{{{1*/ 11 12 11 #ifdef HAVE_CONFIG_H 13 12 #include "config.h" … … 20 19 #endif 21 20 22 23 21 #include "./Param.h" 24 22 #include "../../include/include.h" 25 23 #include "../../shared/shared.h" 26 #include "../../include/include.h"27 #include "../../include/include.h"28 24 /*}}}*/ 29 25 -
issm/trunk/src/c/objects/Params/PetscVecParam.h
r5103 r6163 9 9 /*Headers:*/ 10 10 /*{{{1*/ 11 12 11 #ifdef HAVE_CONFIG_H 13 12 #include "config.h" … … 20 19 #endif 21 20 22 23 21 #include "./Param.h" 24 22 #include "../../include/include.h" 25 23 #include "../../shared/shared.h" 26 #include "../../include/include.h"27 #include "../../include/include.h"28 24 /*}}}*/ 29 25 -
issm/trunk/src/c/objects/Params/StringArrayParam.h
r5103 r6163 9 9 /*Headers:*/ 10 10 /*{{{1*/ 11 12 11 #ifdef HAVE_CONFIG_H 13 12 #include "config.h" … … 20 19 #endif 21 20 22 23 21 #include "./Param.h" 24 22 #include "../../include/include.h" 25 23 #include "../../shared/shared.h" 26 #include "../../include/include.h"27 #include "../../include/include.h"28 24 /*}}}*/ 29 25 -
issm/trunk/src/c/objects/Params/StringParam.h
r5103 r6163 9 9 /*Headers:*/ 10 10 /*{{{1*/ 11 12 11 #ifdef HAVE_CONFIG_H 13 12 #include "config.h" … … 20 19 #endif 21 20 22 23 21 #include "./Param.h" 24 22 #include "../../include/include.h" 25 23 #include "../../shared/shared.h" 26 #include "../../include/include.h"27 #include "../../include/include.h"28 24 /*}}}*/ 29 25
Note:
See TracChangeset
for help on using the changeset viewer.