Changeset 2683 in Sophya for trunk/SophyaExt
- Timestamp:
- Apr 21, 2005, 6:05:19 PM (20 years ago)
- Location:
- trunk/SophyaExt/FitsIOServer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fbtntintf.cc
r2615 r2683 183 183 184 184 ///////////////////////////////////////////////// 185 uint_4FitsBTNtuIntf::NbLines() const185 sa_size_t FitsBTNtuIntf::NbLines() const 186 186 { 187 187 return NBline; 188 188 } 189 189 190 uint_4FitsBTNtuIntf::NbColumns() const190 sa_size_t FitsBTNtuIntf::NbColumns() const 191 191 { 192 192 return NBcol; 193 193 } 194 194 195 r_8 * FitsBTNtuIntf::GetLineD( int n) const195 r_8 * FitsBTNtuIntf::GetLineD(sa_size_t n) const 196 196 // Attention: n [0,NBline[, cfistio veut [1,NBline] 197 197 { … … 248 248 } 249 249 250 r_8 FitsBTNtuIntf::GetCell( int n, int k) const250 r_8 FitsBTNtuIntf::GetCell(sa_size_t n, sa_size_t k) const 251 251 { 252 252 if(n<0 || n>=NBline || k<0 || k>=NBcol) return 0.; -
trunk/SophyaExt/FitsIOServer/fbtntintf.h
r2322 r2683 29 29 inline void Print(int lp=1) const {Print(cout,lp);} 30 30 31 virtual uint_4NbLines() const ;32 virtual uint_4NbColumns() const ;33 virtual r_8 * GetLineD( intn) const ;34 virtual r_8 GetCell( int n, intk) const ;31 virtual sa_size_t NbLines() const ; 32 virtual sa_size_t NbColumns() const ; 33 virtual r_8 * GetLineD(sa_size_t n) const ; 34 virtual r_8 GetCell( sa_size_t n, sa_size_t k) const ; 35 35 virtual string VarList_C(const char* nomx=NULL) const ; 36 36
Note:
See TracChangeset
for help on using the changeset viewer.