Changeset 20026
- Timestamp:
- 01/29/16 18:47:49 (9 years ago)
- Location:
- issm/trunk-jpl/src/c/classes/Params
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Params/DoubleMatParam.cpp
r19217 r20026 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 /*}}}*/ -
issm/trunk-jpl/src/c/classes/Params/DoubleMatParam.h
r19217 r20026 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 */
Note:
See TracChangeset
for help on using the changeset viewer.