Changeset 6682 for issm/trunk


Ignore:
Timestamp:
12/06/10 15:10:33 (14 years ago)
Author:
Eric.Larour
Message:

Added default user settings in the astrid class, was missing.
Added John's settings.

Location:
issm/trunk/src/m
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/classes/clusters/astrid.m

    r6389 r6682  
    2323         methods
    2424                 function cluster=astrid(varargin) % {{{1
     25                 
     26                         %initialize cluster using user settings if provided
     27                         if (exist('astrid_settings')==2), astrid_settings; end
     28
     29                         %use provided options to change fields
    2530                         options=pairoptions(varargin{:});
    2631                         for i=1:size(options.list,1),
  • issm/trunk/src/m/classes/runsteps.m

    r6249 r6682  
    158158                         bool=false;
    159159
    160                          %if steps = 0, print all steps in rs and return false
     160                         %if steps = 0, print all steps in rs
    161161                         if any(steps==0),
    162162                                 if num==1,
     163                                         disp(sprintf('   prefix: %s',rs.prefix(1:end-6)));
    163164                                         for i=1:length(rs.steps),
    164165                                                 disp(sprintf('   step #%2i : %s',rs.steps(i).id,rs.steps(i).string));
Note: See TracChangeset for help on using the changeset viewer.