Changeset 3167 in Sophya for trunk/SophyaExt/FitsIOServer/fitsgenedata.cc
- Timestamp:
- Feb 2, 2007, 6:46:47 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fitsgenedata.cc
r3063 r3167 139 139 140 140 //--- Nb de lignes et de colonnes 141 vector<string> colnames; vector<int> coltypes; vector< long> repcnt, width;141 vector<string> colnames; vector<int> coltypes; vector<LONGLONG> repcnt, width; 142 142 is.GetColInfo(colnames,coltypes,repcnt,width); 143 143 long ncol = colnames.size(); 144 144 if(ncol<=0) 145 145 throw FitsIOException("FitsHandler<GeneralFitData>::Read() bad number of table columns"); 146 longnbrows = is.GetNbRows();146 int_8 nbrows = is.GetNbRows(); 147 147 if(nbrows<=0) 148 148 throw FitsIOException("FitsHandler<GeneralFitData>::Read() number of rows is zero, no reading");
Note:
See TracChangeset
for help on using the changeset viewer.