Changeset 973 in Sophya for trunk/SophyaExt
- Timestamp:
- Apr 27, 2000, 6:20:54 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fitsfile.cc
r972 r973 563 563 int FitsFile::NbColsFromFits() const 564 564 { 565 int status= 0;565 // int status= 0; 566 566 if(hdutype_ == BINARY_TBL) return nbcols_; 567 567 else … … 576 576 char FitsFile::ColTypeFromFits(int nocol) const 577 577 { 578 int status= 0;578 // int status= 0; 579 579 if(hdutype_ != ASCII_TBL && hdutype_ != BINARY_TBL) 580 580 { … … 585 585 int FitsFile::NentriesFromFits(int nocol) const 586 586 { 587 int status= 0;587 // int status= 0; 588 588 if(hdutype_ == BINARY_TBL ) return nrows_*repeat_[nocol]; 589 589 else … … 600 600 string FitsFile::ColNameFromFits(int nocol) const 601 601 { 602 int status= 0;602 // int status= 0; 603 603 if(hdutype_ != ASCII_TBL && hdutype_ != BINARY_TBL) 604 604 { … … 609 609 int FitsFile::ColStringLengthFromFits(int nocol) const 610 610 { 611 int status= 0;611 // int status= 0; 612 612 if(hdutype_ != ASCII_TBL && hdutype_ != BINARY_TBL) 613 613 {
Note:
See TracChangeset
for help on using the changeset viewer.