Changeset 906 for trunk/src/series.m


Ignore:
Timestamp:
May 31, 2015, 7:49:31 PM (9 years ago)
Author:
sommeria
Message:

various bgu repairs and ima_remove_partices and ima_remove_background updated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/series.m

    r905 r906  
    17191719end
    17201720CPUTime=5;% job time estimated at 5 min per iteration (on index i and j) by default
    1721 if isfield(Param, 'CPUTime') && ~isempty(Param.CPUTime)
    1722     CPUTime=Param.CPUTime;%Note: CpUTime for one iteration ref_i has to be multiplied by the number of j indices nbfield_j
     1721if isfield(Param.Action, 'CPUTime') && ~isempty(Param.Action.CPUTime)
     1722    CPUTime=Param.Action.CPUTime;%Note: CpUTime for one iteration ref_i has to be multiplied by the number of j indices nbfield_j
    17231723end
    17241724nbfield_j=numel(ref_j); % number of j indices
     
    18531853        t=set(t,1,'name','Series');
    18541854        filexml=fullfile_uvmat(DirXml,'',Param.InputTable{1,3},'.xml',OutputNomType,...
    1855             Param.IndexRange.first_i,Param.IndexRange.last_i,first_j,last_j)
     1855            Param.IndexRange.first_i,Param.IndexRange.last_i,first_j,last_j);
    18561856        save(t,filexml);% save the parameter file
    18571857       
     
    19391939%         end
    19401940        filename_joblist=fullfile(DirExe,'0_job_list.txt');%create name of the global executable file
    1941         filename_log=fullfile(DirLog,'0_job_list.stdout');%file for output messages of the master oar process
    1942         filename_errors=fullfile(DirLog,'0_job_list.stderr');%file for error messages of the master oar process
     1941        filename_log=fullfile(DirLog,'job_list.stdout');%file for output messages of the master oar process
     1942        filename_errors=fullfile(DirLog,'job_list.stderr');%file for error messages of the master oar process
    19431943       
    19441944        fid=fopen(filename_joblist,'w');
     
    19661966            '-t idempotent --checkpoint ' num2str(WallTimeOneJob*60) ' '...
    19671967            '-l /core=' num2str(NbCore) ','...
    1968             'walltime=' datestr(WallTimeOneJob/24,13) ' '...
     1968            'walltime=' datestr(WallTimeTotal/24,13) ' '...
    19691969            '-E ' filename_errors ' '...
    19701970            '-O ' filename_log ' '...
Note: See TracChangeset for help on using the changeset viewer.