Changeset 19395
- Timestamp:
- 06/10/15 15:18:01 (10 years ago)
- Location:
- issm/trunk-jpl/src/c/classes/Elements
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Element.cpp
r19381 r19395 1540 1540 1541 1541 }/*}}}*/ 1542 void Element::Marshall (char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction,int numanalyses){/*{{{*/1542 void Element::MarshallElement(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction,int numanalyses){/*{{{*/ 1543 1543 1544 1544 _assert_(this); -
issm/trunk-jpl/src/c/classes/Elements/Element.h
r19282 r19395 121 121 bool IsInput(int name); 122 122 void LinearFloatingiceMeltingRate(); 123 void MarshallElement(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction,int numanalyses); 123 124 void MigrateGroundingLine(IssmDouble* sheet_ungrounding); 124 125 ElementMatrix* NewElementMatrix(int approximation_enum=NoneApproximationEnum); … … 227 228 virtual void JacobianDeterminantSurface(IssmDouble* Jdet, IssmDouble* xyz_list,Gauss* gauss)=0; 228 229 virtual void JacobianDeterminantTop(IssmDouble* Jdet,IssmDouble* xyz_list_base,Gauss* gauss)=0; 229 virtual void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction ,int numanalyses);230 virtual void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction)=0; 230 231 virtual IssmDouble Masscon(IssmDouble* levelset)=0; 231 232 virtual IssmDouble MassFlux(IssmDouble* segment)=0; -
issm/trunk-jpl/src/c/classes/Elements/Penta.cpp
r19302 r19395 129 129 /*Call parent classes: */ 130 130 ElementHook::Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction); 131 Element::Marshall (pmarshalled_data,pmarshalled_data_size,marshall_direction,this->numanalyses);131 Element::MarshallElement(pmarshalled_data,pmarshalled_data_size,marshall_direction,this->numanalyses); 132 132 PentaRef::Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction); 133 133 -
issm/trunk-jpl/src/c/classes/Elements/Seg.cpp
r19254 r19395 113 113 /*Call parent classes: */ 114 114 ElementHook::Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction); 115 Element::Marshall (pmarshalled_data,pmarshalled_data_size,marshall_direction,this->numanalyses);115 Element::MarshallElement(pmarshalled_data,pmarshalled_data_size,marshall_direction,this->numanalyses); 116 116 SegRef::Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction); 117 117 -
issm/trunk-jpl/src/c/classes/Elements/Tetra.cpp
r19254 r19395 109 109 /*Call parent classes: */ 110 110 ElementHook::Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction); 111 Element::Marshall (pmarshalled_data,pmarshalled_data_size,marshall_direction,this->numanalyses);111 Element::MarshallElement(pmarshalled_data,pmarshalled_data_size,marshall_direction,this->numanalyses); 112 112 TetraRef::Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction); 113 113 -
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r19302 r19395 120 120 /*Call parent classes: */ 121 121 ElementHook::Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction); 122 Element::Marshall (pmarshalled_data,pmarshalled_data_size,marshall_direction,this->numanalyses);122 Element::MarshallElement(pmarshalled_data,pmarshalled_data_size,marshall_direction,this->numanalyses); 123 123 TriaRef::Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction); 124 124
Note:
See TracChangeset
for help on using the changeset viewer.