Changeset 13357
- Timestamp:
- 09/13/12 11:10:43 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/shared/Exp/exp.h
r13353 r13357 70 70 71 71 /*output: */ 72 int nprof; //number of profiles in the domainname file73 int *profnvertices = NULL; //array holding the number of vertices for the nprof profiles72 int nprof; //number of profiles in the domainname file 73 int *profnvertices = NULL; //array holding the number of vertices for the nprof profiles 74 74 doubletype **pprofx = NULL; //array of profiles x coordinates 75 75 doubletype **pprofy = NULL; //array of profiles y coordinates 76 bool *closed = NULL; //array holding closed flags for the nprof profiles76 bool *closed = NULL; //array holding closed flags for the nprof profiles 77 77 78 78 /*For each profile: */ 79 int n;79 int n; 80 80 doubletype *x = NULL; 81 81 doubletype *y = NULL; 82 double xi,yi; 83 bool cl; 82 bool cl; 84 83 85 84 /*open domain outline file for reading: */ … … 88 87 } 89 88 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: */ 92 90 nprof=1; 93 91 for(;;){ … … 97 95 fscanf(fid,"%20u %256s\n",&n,chardummy); 98 96 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; 106 100 nprof++; 107 101 } 108 102 109 103 /*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); 113 107 for (i=0;i<nprof;i++){ 114 pprofx[i] =NULL;115 pprofy[i] =NULL;108 pprofx[i] = NULL; 109 pprofy[i] = NULL; 116 110 } 117 111 closed=xNew<bool>(nprof); … … 140 134 /*Read vertices: */ 141 135 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]); 144 137 } 145 138 … … 165 158 *ppprofx=pprofx; 166 159 *ppprofy=pprofy; 167 if(pclosed) 168 *pclosed=closed; 169 else 170 xDelete<bool>(closed); 160 if(pclosed) *pclosed=closed; 161 else xDelete<bool>(closed); 171 162 } /*}}}*/ 172 163 /*DataSet* DomainOutlineRead(char* domainname){{{*/
Note:
See TracChangeset
for help on using the changeset viewer.