Changeset 1659 in Sophya for trunk/SophyaExt/FitsIOServer/fabtcolread.h
- Timestamp:
- Sep 28, 2001, 7:22:39 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fabtcolread.h
r1657 r1659 18 18 public: 19 19 FitsABTColRead(string fname,string collabel,int ihdu=0 20 ,long blen=100,long bsens=1,int lp=0);20 ,long blen=100,long bsens=1,int lp=0); 21 21 FitsABTColRead(string fname,int colnum,int ihdu=0 22 ,long blen=100,long bsens=1,int lp=0);22 ,long blen=100,long bsens=1,int lp=0); 23 23 FitsABTColRead(const char *cfname,const char *collabel,int ihdu=0 24 ,long blen=100,long bsens=1,int lp=0);24 ,long blen=100,long bsens=1,int lp=0); 25 25 FitsABTColRead(const char *cfname,int colnum,int ihdu=0 26 ,long blen=100,long bsens=1,int lp=0);26 ,long blen=100,long bsens=1,int lp=0); 27 27 FitsABTColRead(FitsABTColRead& fbt); 28 28 virtual ~FitsABTColRead(); … … 30 30 void ChangeBuffer(long blen=100,long bsens=1); 31 31 32 double Read(long n); 33 void Read(long n1,long n2,TVector<double>& data); 32 double Read(long n,bool usebuffer=true); 33 long Read(long n1,long n2,TVector<double>& data); 34 long Read(long n1,long n2,TVector<float>& data); 35 long Read(long n1,long n2,TVector<int_4>& data); 36 37 //! return the value of the first row 38 double ReadFirstRow(bool usebuffer=false) 39 {return Read(0,usebuffer);} 40 //! return the value of the last row 41 double ReadLastRow(bool usebuffer=false) 42 {return Read(NBline-1,usebuffer);} 43 44 long FirstRow(double val1,double val2,long rowstart=-1); 45 long LastRow(double val1,double val2,long rowstart=-1); 34 46 35 47 //! Set debug level
Note:
See TracChangeset
for help on using the changeset viewer.