Ignore:
Timestamp:
07/11/11 16:41:47 (14 years ago)
Author:
Eric.Larour
Message:

Reorganized io/ directory quite a bit.
Separated Matlab io from the other Disk related io.
Renamed WriteData to WriteMatlabData and FetchData to FetchMatlabData.
Folded WriteParams and FetchParams into FetchMatlabData and WriteMatlabData.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/mex/Reduceload/Reduceload.cpp

    r6579 r8910  
    2323
    2424        /*Input datasets: */
    25         FetchData(&pf,PF);
    26         FetchData(&Kfs,KFS);
    27         FetchData(&ys,YS);
     25        FetchMatlabData(&pf,PF);
     26        FetchMatlabData(&Kfs,KFS);
     27        FetchMatlabData(&ys,YS);
    2828
    2929        /*!Reduce load from g to f size: */
    3030        if(nrhs==4){
    31                 FetchData(&flag_ys0,YSFLAG);
     31                FetchMatlabData(&flag_ys0,YSFLAG);
    3232                Reduceloadx(pf, Kfs, ys,flag_ys0);
    3333        }
     
    3737
    3838        /*write output datasets: */
    39         WriteData(PFOUT,pf);
     39        WriteMatlabData(PFOUT,pf);
    4040
    4141        /*Free ressources: */
Note: See TracChangeset for help on using the changeset viewer.