Changeset 21745


Ignore:
Timestamp:
05/26/17 19:46:51 (8 years ago)
Author:
Eric.Larour
Message:

CHG: masscon axpby observation enum now a string.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/massconaxpby.m

    r21049 r21745  
    33%   Usage:
    44%      massconaxpby=massconaxpby();
    5 %      massconsumaxpby=massconaxpby('name','MassCon58+35','namex','MassCon58','alpha',.5,'namey','MassCon35','beta',.5);
     5%      massconaxpby=massconaxpby('name','MassCon58+35','namex','MassCon58','alpha',.5,'namey','MassCon35','beta',.5);
    66%
    77%   where name is the name of the massconaxpby object, namex is the name of the first masscon, namey the name of the second masscon and alpha,beta the
     
    7777                function md = marshall(self,prefix,md,fid) % {{{
    7878
    79                 WriteData(fid,prefix,'object',self,'fieldname','name','format','String');
    80                 WriteData(fid,prefix,'object',self,'fieldname','definitionstring','format','Integer');
    81                 WriteData(fid,prefix,'object',self,'fieldname','namex','format','String');
    82                 WriteData(fid,prefix,'object',self,'fieldname','namey','format','String');
    83                 WriteData(fid,prefix,'object',self,'fieldname','alpha','format','Double');
    84                 WriteData(fid,prefix,'object',self,'fieldname','beta','format','Double');
    85 
     79                WriteData(fid,prefix,'data',self.name,'name','md.massconaxpby.name','format','String');
     80                WriteData(fid,prefix,'data',self.definitionstring,'name','md.massconaxpby.definitionstring','format','String');
     81                WriteData(fid,prefix,'data',self.namex,'name','md.massconaxpby.namex','format','String');
     82                WriteData(fid,prefix,'data',self.namey,'name','md.massconaxpby.namey','format','String');
     83                WriteData(fid,prefix,'data',self.alpha,'name','md.massconaxpby.alpha','format','Double');
     84                WriteData(fid,prefix,'data',self.beta,'name','md.massconaxpby.beta','format','Double');
    8685                end % }}}
    8786        end
Note: See TracChangeset for help on using the changeset viewer.