Ignore:
Timestamp:
Sep 27, 2001, 7:45:52 PM (24 years ago)
Author:
cmv
Message:

possibilite d'ecrire directement des TVector fabtwriter cmv 27/9/01

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaExt/FitsIOServer/fabtwriter.h

    r1654 r1657  
    3737  inline void SetExtName(char* extname="") {ExtName = extname;}
    3838  //! Set debug level
    39   inline void SetDebug(int lp=0) {DbgLevel = (uint_2) lp;}
     39  inline void SetDebug(int lp=0) {DbgLevel = (unsigned short) lp;}
    4040
    41   void Write(int col,long row,short  val);
    42   void Write(int col,long row,long  val);
    43   void Write(int col,long row,float  val);
     41  void Write(int col,long row,short val);
     42  void Write(int col,long row,int_4 val);
     43  void Write(int col,long row,float val);
    4444  void Write(int col,long row,double val);
     45  long Write(int col,long row,TVector<int_4>& val);
     46  long Write(int col,long row,TVector<float>& val);
     47  long Write(int col,long row,TVector<double>& val);
    4548  //! Return the number of overflows managed by cfitsio
    46   inline uint_4 GetNOverFlow(void) {return NOverFlow;}
     49  inline unsigned long GetNOverFlow(void) {return NOverFlow;}
    4750
    4851protected:
     
    5659  string FitsFN,ExtName;
    5760  int HduType;
    58   uint_2 DbgLevel;
     61  unsigned short DbgLevel;
    5962  fitsfile *FitsPtr;
    6063  bool FirstTime;
     
    6366  vector<string> TForm;
    6467  vector<string> TUnit;
    65   uint_4 NOverFlow;
     68  unsigned long NOverFlow;
    6669};
    6770
Note: See TracChangeset for help on using the changeset viewer.