Changeset 13357


Ignore:
Timestamp:
09/13/12 11:10:43 (13 years ago)
Author:
Mathieu Morlighem
Message:

CHG: cosmetics

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/shared/Exp/exp.h

    r13353 r13357  
    7070
    7171        /*output: */
    72         int      nprof;                //number of profiles in the domainname file
    73         int     *profnvertices = NULL; //array holding the number of vertices for the nprof profiles
     72        int          nprof;                //number of profiles in the domainname file
     73        int         *profnvertices = NULL; //array holding the number of vertices for the nprof profiles
    7474        doubletype **pprofx        = NULL; //array of profiles x coordinates
    7575        doubletype **pprofy        = NULL; //array of profiles y coordinates
    76         bool    *closed        = NULL; //array holding closed flags for the nprof profiles
     76        bool        *closed        = NULL; //array holding closed flags for the nprof profiles
    7777
    7878        /*For each profile: */
    79         int     n;
     79        int         n;
    8080        doubletype *x  = NULL;
    8181        doubletype *y  = NULL;
    82         double  xi,yi;
    83         bool    cl;
     82        bool        cl;
    8483
    8584        /*open domain outline file for reading: */
     
    8887        }
    8988
    90         /*Do a first pass through the domainname file, to figure out how many profiles
    91          *we need to read: */
     89        /*Do a first pass through the domainname file, to figure out how many profiles we need to read: */
    9290        nprof=1;
    9391        for(;;){
     
    9795                fscanf(fid,"%20u %256s\n",&n,chardummy);
    9896                fscanf(fid,"%256s %256s %256s %256s %256s\n",chardummy,chardummy,chardummy,chardummy,chardummy);
    99                 for (i=0;i<n;i++){
    100                         fscanf(fid,"%20lf %20lf\n",&ddummy,&ddummy);
    101                 }
    102                 /*Ok, we have faked one profile reading, check whether we are at the end of the file, otherwise, keep fake reading next profile:*/
    103                 if (feof(fid)){
    104                         break;
    105                 }
     97                for (i=0;i<n;i++) fscanf(fid,"%20lf %20lf\n",&ddummy,&ddummy);
     98                /*check whether we are at the end of the file, otherwise, keep reading next profile:*/
     99                if (feof(fid)) break;
    106100                nprof++;
    107101        }
    108102       
    109103        /*Allocate and initialize all the profiles: */
    110         profnvertices=xNew<int>(nprof);
    111         pprofx=xNew<doubletype*>(nprof);
    112         pprofy=xNew<doubletype*>(nprof);
     104        profnvertices = xNew<int>(nprof);
     105        pprofx        = xNew<doubletype*>(nprof);
     106        pprofy        = xNew<doubletype*>(nprof);
    113107        for (i=0;i<nprof;i++){
    114                 pprofx[i]=NULL;
    115                 pprofy[i]=NULL;
     108                pprofx[i] = NULL;
     109                pprofy[i] = NULL;
    116110        }
    117111        closed=xNew<bool>(nprof);
     
    140134                /*Read vertices: */
    141135                for (i=0;i<n;i++){
    142                         fscanf(fid,"%20lf %20lf\n",&xi,&yi);
    143                         x[i]=xi; y[i]=yi;
     136                        fscanf(fid,"%20lf %20lf\n",&x[i],&y[i]);
    144137                }
    145138
     
    165158        *ppprofx=pprofx;
    166159        *ppprofy=pprofy;
    167         if(pclosed)
    168          *pclosed=closed;
    169         else
    170          xDelete<bool>(closed);
     160        if(pclosed) *pclosed=closed;
     161        else         xDelete<bool>(closed);
    171162} /*}}}*/
    172163/*DataSet* DomainOutlineRead(char* domainname){{{*/
Note: See TracChangeset for help on using the changeset viewer.