Changeset 3166 in Sophya for trunk/SophyaExt
- Timestamp:
- Feb 2, 2007, 6:14:49 PM (19 years ago)
- Location:
- trunk/SophyaExt/FitsIOServer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fbtntintf.cc
r2683 r3166 155 155 156 156 // Get number of rows 157 if(fits_get_num_rows (FitsPtr,&NBline,&sta)) printerror(sta);157 if(fits_get_num_rowsll(FitsPtr,&NBline,&sta)) printerror(sta); 158 158 if(DbgLevel) cout<<"...Init NBline="<<NBline<<endl; 159 159 if(NBline<1) {Delete(); return;} … … 218 218 if(n<LineDeb || n>LineFin) { 219 219 NFitsRead++; 220 longrow1,row2,nrow;220 LONGLONG row1,row2,nrow; 221 221 if(BuffSens>0) { // Cas remplissage forward 222 222 row1 = n+1; … … 240 240 } 241 241 242 int_4ibuf = n-LineDeb;242 sa_size_t ibuf = n-LineDeb; 243 243 for(int icol=0;icol<NBcol;icol++) 244 244 if(ColReadable[icol]) mRet[icol] = (Buffer[icol])[ibuf]; -
trunk/SophyaExt/FitsIOServer/fbtntintf.h
r2683 r3166 48 48 uint_2 DbgLevel; 49 49 fitsfile *FitsPtr; 50 longNBline;50 LONGLONG NBline; 51 51 int NBcol; 52 52 r_8 NulVal; 53 53 int_4 BuffLen, BuffSens; 54 mutable uint_ 4NFitsRead;55 mutable longLineDeb, LineFin;54 mutable uint_8 NFitsRead; 55 mutable LONGLONG LineDeb, LineFin; 56 56 vector<string> ColName; 57 57 bool* ColReadable;
Note:
See TracChangeset
for help on using the changeset viewer.