Changeset 1476 in Sophya for trunk/ArchTOIPipe/TestPipes/fits2ascii.cc
- Timestamp:
- Apr 23, 2001, 3:34:45 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ArchTOIPipe/TestPipes/fits2ascii.cc
r1463 r1476 24 24 long sdeb,sfin; 25 25 int width = 8192; 26 charc;26 int c; 27 27 while((c = getopt(narg,arg,"hs:w:")) != -1) { 28 28 switch (c) { … … 54 54 55 55 TOISeqBuffered **toi = new TOISeqBuffered *[ncol]; 56 57 for(i nt i=0;i<ncol;i++) {56 int i; 57 for(i=0;i<ncol;i++) { 58 58 string col = r.getOutName(i); 59 59 toi[i] = new TOISeqBuffered(col,width); … … 71 71 w.PrintStatus(cout); 72 72 73 for(i nt i=0;i<ncol;i++) if(toi[i]) delete toi[i];73 for(i=0;i<ncol;i++) if(toi[i]) delete toi[i]; 74 74 delete toi; 75 75
Note:
See TracChangeset
for help on using the changeset viewer.