Ignore:
Timestamp:
Apr 27, 2001, 11:33:51 AM (24 years ago)
Author:
aubourg
Message:

join & merge

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ArchTOIPipe/Kernel/fitstoirdr.h

    r1365 r1480  
    66#include "toiprocessor.h"
    77#include <string>
     8#include <vector>
    89#include "fitsio.h"
    910
     
    1314  FITSTOIReader(string fn);
    1415  ~FITSTOIReader();
     16
     17  virtual void addFile(string fn);
     18
    1519  virtual void init(); 
    1620  virtual void run(); 
     
    2024  virtual int   calcMaxOut();
    2125
     26  virtual void run1();
     27  virtual void openFile(string fn);
     28
    2229private:
    23   string fname;
    24   fitsfile *fptr;
    25   int fstatus;
    26   long nrows;
    27   int firstSn;
     30  fitsfile* fptr;
     31  int       fstatus;
     32  string    fname;   // current file
     33  long      nrows;   // current file
     34  int       firstSn; // current file
     35
     36  int       ncols;   
     37  int       snBegin; // first file
     38  int       snEnd;   // last file
     39 
     40  vector<string> allfn;
     41
    2842};
    2943
Note: See TracChangeset for help on using the changeset viewer.