source: Sophya/trunk/SophyaExt/FitsIOServer/fitsntuple.h@ 2994

Last change on this file since 2994 was 2897, checked in by ansari, 20 years ago

Mise en place de l heritage FitsIOHandler (ancien) de FitsHandlerInterface pour une gestion commune - a partir de FitsManager - Reza 13/01/2006

File size: 2.3 KB
Line 
1// Guy Le Meur 03/2000
2
3
4#ifndef FITSNTuple_SEEN
5#define FITSNTuple_SEEN
6#include "machdefs.h"
7#include "ntuple.h"
8#include "anydataobj.h"
9#include "ppersist.h"
10#include "fitsfile.h"
11
12namespace SOPHYA {
13///////////////////////////////////////////////////////////////////
14// Classe pour la gestion de persistance sur fichiers fits
15// pout NTuple
16////////////////////////////////////////////////////////////////
17class FITS_NTuple : public FitsIOHandler
18{
19
20public:
21
22FITS_NTuple();
23FITS_NTuple(char inputfile[],int hdunum=0);
24FITS_NTuple(const NTuple & obj);
25 FITS_NTuple(NTuple* obj);
26virtual ~FITS_NTuple();
27
28virtual AnyDataObj* DataObj() { return(dobj_); }
29virtual void SetDataObj(AnyDataObj & o)
30 {
31 NTuple* po = dynamic_cast< NTuple* >(& o);
32 if (po == NULL) return;
33 if (ownobj_ && dobj_) delete dobj_;
34 dobj_ = po;
35 ownobj_ = false;
36 }
37virtual int CheckHandling(AnyDataObj & o)
38 {
39 if (typeid(o) == typeid(NTuple)) return 2;
40 NTuple * po = dynamic_cast< NTuple * >(& o);
41 if (po == NULL) return 0;
42 else return 1;
43 }
44
45virtual int CheckReadability(FitsInOutFile& is);
46
47virtual FitsHandlerInterface* Clone()
48 { return new FITS_NTuple() ; }
49
50/*!
51fill the XNTuple only with lines from firstLine-th to (firstLine+numberOfLines-1)-th of the FITS-file inputfile.
52\param <firstLine> first line to be read (the first line of the file is numbered 0)
53\param <numberOfLines> number of lines to be read
54*/
55 void ReadLines(char inputfile[],int firstLine, int numberOfLines,int hdunum=0);
56
57inline operator NTuple() { return(*dobj_); }
58inline NTuple * getObj() { return(dobj_); }
59
60protected:
61
62 // implementation de FitsFile
63virtual void ReadFromFits(FitsInFile& is);
64virtual void WriteToFits(FitsOutFile& os) ;
65
66 private :
67
68inline void InitNull() { fistLineToBeRead_= -1; numberOfLinesToBeRead_= -1;}
69
70
71 // attributs de classe
72 NTuple* dobj_;
73 bool ownobj_;
74 int fistLineToBeRead_;
75 int numberOfLinesToBeRead_;
76};
77//////////////////////////////////////////////////////////////////
78
79inline FitsOutFile& operator << (FitsOutFile& fios, NTuple & nt)
80 { FITS_NTuple fih(&nt); fih.Write(fios); return (fios); }
81
82inline FitsInFile& operator >> (FitsInFile& fiis, NTuple & nt)
83 { FITS_NTuple fih(&nt); fih.Read(fiis); return (fiis); }
84
85
86} // Fin du namespace
87
88#endif
Note: See TracBrowser for help on using the repository browser.