Changeset 22942


Ignore:
Timestamp:
07/13/18 14:23:07 (7 years ago)
Author:
Eric.Larour
Message:

CHG: allow no-log option.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/solve/loadresultsfromcluster.m

    r19335 r22942  
    1 function md=loadresultsfromcluster(md,runtimename)
     1function md=loadresultsfromcluster(md,varargin)
    22%LOADRESULTSFROMCLUSTER - load results of solution sequence from cluster
    33%
    44%   Usage:
    5 %      md=loadresultsfromcluster(md,runtimename);
     5%      md=loadresultsfromcluster(md,varargin);
     6%      options include runtimename and nolog.
     7
     8%process options:
     9options=pairoptions(varargin{:});
     10nolog=getfieldvalue(options,'nolog',0);
    611
    712%retrieve cluster, to be able to call its methods
    813cluster=md.cluster;
    914
    10 if nargin==2,
    11         md.private.runtimename=runtimename;
     15if exist(options,'runtimename'),
     16        md.private.runtimename=getfieldvalue(optoins,'runtimename');
    1217end
    1318
    1419%Download outputs from the cluster
    15 filelist={[md.miscellaneous.name '.outlog'],[md.miscellaneous.name '.errlog']};
     20if ~nolog,
     21        filelist={[md.miscellaneous.name '.outlog'],[md.miscellaneous.name '.errlog']};
     22else
     23        filelist={};
     24end
    1625if md.qmu.isdakota,
    1726        filelist{end+1}=[md.miscellaneous.name '.qmu.err'];
     
    3544        delete([['qmu' num2str(feature('GetPid')) '/']  md.miscellaneous.name '.errlog']);
    3645else
    37         delete([md.miscellaneous.name '.outlog']);
    38         delete([md.miscellaneous.name '.errlog']);
     46        if ~nolog,
     47                delete([md.miscellaneous.name '.outlog']);
     48                delete([md.miscellaneous.name '.errlog']);
     49        end
    3950        delete([md.miscellaneous.name '.outbin']);
    4051        if exist([md.private.runtimename '.tar.gz']) & ~ispc(),
Note: See TracChangeset for help on using the changeset viewer.