FACT++  1.0
virtual void fits::StageRow ( size_t  row,
char *  dest 
)
inlinevirtual

Reimplemented in zfits, and factfits.

Definition at line 751 of file fits.h.

References fits::Table::bytes_per_row, and fits::Table::offset.

Referenced by zfits::StageRow().

752  {
753  // if (row!=fRow+1) // Fast seeking is ensured by izstream
754  seekg(fTable.offset+row*fTable.bytes_per_row);
755  read(dest, fTable.bytes_per_row);
756  //fin.clear(fin.rdstate()&~ios::eofbit);
757  }
size_t bytes_per_row
Definition: fits.h:96
Table fTable
Definition: fits.h:502
off_t offset
Definition: fits.h:91

+ Here is the caller graph for this function: