source:
issm/oecreview/Archive/19101-20495/ISSM-20025-20026.diff@
20498
Last change on this file since 20498 was 20498, checked in by , 9 years ago | |
---|---|
File size: 1.3 KB |
-
TabularUnified ../trunk-jpl/src/c/classes/Params/DoubleMatParam.h
71 71 void SetValue(FILE* fid){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a FILE");} 72 72 void SetValue(IssmDouble** array, int M, int* mdim_array, int* ndim_array){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold an array of matrices");} 73 73 /*}}}*/ 74 /*DoubleMatParam specific routines:{{{*/ 75 void GetParameterValueByPointer(IssmDouble** pIssmDoublearray,int* pM,int* pN); 76 /*}}}*/ 74 77 }; 75 78 #endif /* _DOUBLEMATPARAM_H */ -
TabularUnified ../trunk-jpl/src/c/classes/Params/DoubleMatParam.cpp
112 112 this->N=in_N; 113 113 } 114 114 /*}}}*/ 115 116 /*DoubleMatParam specific routines:*/ 117 void DoubleMatParam::GetParameterValueByPointer(IssmDouble** pIssmDoublearray,int* pM,int* pN){/*{{{*/ 118 119 /*Assign output pointers:*/ 120 if(pM) *pM=M; 121 if(pN) *pN=N; 122 *pIssmDoublearray=value; 123 } 124 /*}}}*/
Note:
See TracBrowser
for help on using the repository browser.