Changeset 1657 in Sophya for trunk/SophyaExt/FitsIOServer/fabtcolread.h
- Timestamp:
- Sep 27, 2001, 7:45:52 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fabtcolread.h
r1654 r1657 30 30 void ChangeBuffer(long blen=100,long bsens=1); 31 31 32 r_8Read(long n);33 void Read(long n1,long n2,TVector< r_8>& data);32 double Read(long n); 33 void Read(long n1,long n2,TVector<double>& data); 34 34 35 35 //! Set debug level 36 inline void SetDebug(int lp=0) {DbgLevel = (u int_2) lp;}36 inline void SetDebug(int lp=0) {DbgLevel = (unsigned short) lp;} 37 37 //! Set null value to be return when reading null data (0=return the data) 38 inline void SetNulVal( r_8nulval=0.) {NulVal = nulval;}38 inline void SetNulVal(double nulval=0.) {NulVal = nulval;} 39 39 //! Get the FITS file name 40 40 inline string GetFileName(void) {return FitsFN;} … … 59 59 //! Get the columns fits tform that is read 60 60 inline string GetColTForm(void) {return ColTForm;} 61 //! Get the read buffer length61 //! Get the read requested buffer length 62 62 inline long GetBLen(void) {return BuffLen;} 63 63 //! Get the read buffer direction … … 67 67 //! Print to stdout 68 68 inline void Print(int lp=1) const {Print(cout,lp);} 69 //! Get the read buffer effectivelength70 inline long Get BufferLen(void) {return NBuffer;}69 //! Get the read effective buffer length 70 inline long GetNBuffer(void) {return NBuffer;} 71 71 //! Get the read bufferpointer 72 72 inline double* GetBuffer(void) {return Buffer;} … … 82 82 long NBline; 83 83 84 r_8NulVal;85 u int_2DbgLevel;84 double NulVal; 85 unsigned short DbgLevel; 86 86 long BuffLen, BuffSens; 87 87 88 u int_4NFitsRead;88 unsigned long NFitsRead; 89 89 fitsfile *FitsPtr; 90 90 long LineDeb, LineFin;
Note:
See TracChangeset
for help on using the changeset viewer.