Changeset 1476 in Sophya for trunk/ArchTOIPipe/TestPipes
- Timestamp:
- Apr 23, 2001, 3:34:45 PM (24 years ago)
- Location:
- trunk/ArchTOIPipe/TestPipes
- Files:
-
- 3 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 -
trunk/ArchTOIPipe/TestPipes/tstmap2toi.cc
r1463 r1476 31 31 char *label_alpha = "alpha", *label_delta = "delta", *label_bolomuv = "boloMuV"; 32 32 long sdeb,sfin; 33 charc;33 int c; 34 34 while((c = getopt(narg,arg,"hp:s:w:a:d:b:")) != -1) { 35 35 switch (c) { -
trunk/ArchTOIPipe/TestPipes/tsttoi2map.cc
r1463 r1476 33 33 bool coorgal=false; 34 34 long sdeb,sfin; 35 charc;35 int c; 36 36 while((c = getopt(narg,arg,"hGp:s:w:a:d:b:n:")) != -1) { 37 37 switch (c) {
Note:
See TracChangeset
for help on using the changeset viewer.