Changeset 19395


Ignore:
Timestamp:
06/10/15 15:18:01 (10 years ago)
Author:
schlegel
Message:

CHG: change element Marshall to MarshallElement

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  
    15401540
    15411541}/*}}}*/
    1542 void       Element::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction,int numanalyses){/*{{{*/
     1542void       Element::MarshallElement(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction,int numanalyses){/*{{{*/
    15431543       
    15441544        _assert_(this);
  • issm/trunk-jpl/src/c/classes/Elements/Element.h

    r19282 r19395  
    121121                bool                 IsInput(int name);
    122122                void               LinearFloatingiceMeltingRate();
     123                void               MarshallElement(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction,int numanalyses);
    123124                void               MigrateGroundingLine(IssmDouble* sheet_ungrounding);
    124125                ElementMatrix*     NewElementMatrix(int approximation_enum=NoneApproximationEnum);
     
    227228                virtual void       JacobianDeterminantSurface(IssmDouble* Jdet, IssmDouble* xyz_list,Gauss* gauss)=0;
    228229                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;
    230231                virtual IssmDouble Masscon(IssmDouble* levelset)=0;
    231232                virtual IssmDouble MassFlux(IssmDouble* segment)=0;
  • issm/trunk-jpl/src/c/classes/Elements/Penta.cpp

    r19302 r19395  
    129129        /*Call parent classes: */
    130130        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);
    132132        PentaRef::Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
    133133
  • issm/trunk-jpl/src/c/classes/Elements/Seg.cpp

    r19254 r19395  
    113113        /*Call parent classes: */
    114114        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);
    116116        SegRef::Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
    117117
  • issm/trunk-jpl/src/c/classes/Elements/Tetra.cpp

    r19254 r19395  
    109109        /*Call parent classes: */
    110110        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);
    112112        TetraRef::Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
    113113
  • issm/trunk-jpl/src/c/classes/Elements/Tria.cpp

    r19302 r19395  
    120120        /*Call parent classes: */
    121121        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);
    123123        TriaRef::Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
    124124
Note: See TracChangeset for help on using the changeset viewer.