1 | // This may look like C code, but it is really -*- C++ -*-
|
---|
2 | // Class NTuple
|
---|
3 | // CMV+Reza Juillet 97
|
---|
4 | // CEA-DAPNIA LAL-IN2P3/CNRS
|
---|
5 |
|
---|
6 | #ifndef NTUPLE_H_SEEN
|
---|
7 | #define NTUPLE_H_SEEN
|
---|
8 |
|
---|
9 | #include "objfio.h"
|
---|
10 |
|
---|
11 | #include <iostream>
|
---|
12 | #include <string>
|
---|
13 | #include <vector>
|
---|
14 |
|
---|
15 | #include "ntupintf.h"
|
---|
16 | #include "ppersist.h"
|
---|
17 | #include "dvlist.h"
|
---|
18 |
|
---|
19 | namespace SOPHYA {
|
---|
20 |
|
---|
21 | // Forward class declaration for Fits handler
|
---|
22 | class FITS_NTuple;
|
---|
23 | // Forward class declaration for Thread-safe operations
|
---|
24 | class ThSafeOp;
|
---|
25 |
|
---|
26 | //! Class for creation and management of double or float data sets in a table
|
---|
27 | class NTuple : public AnyDataObj , public NTupleInterface {
|
---|
28 |
|
---|
29 | public:
|
---|
30 | NTuple();
|
---|
31 | NTuple(int nvar, char** noms, int blk=512, bool fgdouble=true);
|
---|
32 | NTuple(int nvar, const char** noms, int blk=512, bool fgdouble=true);
|
---|
33 | NTuple(vector<string>& noms, int blk=512, bool fgdouble=true);
|
---|
34 | NTuple(const NTuple& NT);
|
---|
35 | virtual ~NTuple();
|
---|
36 |
|
---|
37 | // Activate/deactivate thread-safe Fill operation
|
---|
38 | void SetThreadSafe(bool fg=true);
|
---|
39 | //! Return true if Fill operations are thread-safe
|
---|
40 | inline bool IsThreadSafe() const { return ((mThS)?true:false); }
|
---|
41 |
|
---|
42 | NTuple& operator = (const NTuple& NT);
|
---|
43 |
|
---|
44 | void Fill(r_4* x);
|
---|
45 | void Fill(r_8* x);
|
---|
46 | //! Return the number of lines (rows) in the table)
|
---|
47 | inline int_4 NEntry() const { return(mNEnt); }
|
---|
48 | //! Return the number of columns in the tables (number of cells in a row)
|
---|
49 | inline int_4 NVar() const { return(mNVar); }
|
---|
50 | //! Return the bloc size
|
---|
51 | inline int_4 BLock() const { return(mBlk); }
|
---|
52 | // $CHECK$ Reza 21/10/99 Pourquoi faire BLock() ?
|
---|
53 |
|
---|
54 | //! Return the content of the cell for line (row) \b n , column \b k
|
---|
55 | float GetVal(int n, int k) const;
|
---|
56 | //! Return the content of the cell for line (row) \b and column name \b nom
|
---|
57 | inline float GetVal(int n, const char* nom) const
|
---|
58 | { return(GetVal(n, IndexNom(nom)) ); }
|
---|
59 | int IndexNom(const char* nom) const ;
|
---|
60 | char* NomIndex(int k) const;
|
---|
61 | //! Return the content of line \b n as a vector of r_4 (float)
|
---|
62 | r_4* GetVec(int n, r_4* ret=NULL) const ;
|
---|
63 | //! Return the content of line \b n as a vector of r_8 (double)
|
---|
64 | r_8* GetVecD(int n, r_8* ret=NULL) const ;
|
---|
65 |
|
---|
66 | // Impression, I/O
|
---|
67 | void Print(int num, int nmax=1) const ;
|
---|
68 | void Show(ostream& os) const;
|
---|
69 | inline void Show() const { Show(cout); }
|
---|
70 |
|
---|
71 | //! Return the associated DVList object
|
---|
72 | DVList& Info();
|
---|
73 |
|
---|
74 | // Remplissage depuis fichier ASCII
|
---|
75 | int FillFromASCIIFile(string const& fn, float defval=0.);
|
---|
76 |
|
---|
77 |
|
---|
78 | // Declaration de l interface NTuple
|
---|
79 | virtual sa_size_t NbLines() const ;
|
---|
80 | virtual sa_size_t NbColumns() const ;
|
---|
81 | virtual r_8 * GetLineD(sa_size_t n) const ;
|
---|
82 | virtual r_8 GetCell(sa_size_t n, sa_size_t k) const ;
|
---|
83 | virtual r_8 GetCell(sa_size_t n, string const & nom) const ;
|
---|
84 | virtual void GetMinMax(sa_size_t k, double& min, double& max) const ;
|
---|
85 | virtual void GetMinMax(string const & nom, double& min, double& max) const ;
|
---|
86 | virtual sa_size_t ColumnIndex(string const & nom) const ;
|
---|
87 | virtual string ColumnName(sa_size_t k) const;
|
---|
88 | virtual string VarList_C(const char* nomx=NULL) const ;
|
---|
89 | virtual string LineHeaderToString() const;
|
---|
90 | virtual string LineToString(sa_size_t n) const;
|
---|
91 |
|
---|
92 | // Pour la gestion de persistance
|
---|
93 | friend class ObjFileIO<NTuple> ;
|
---|
94 |
|
---|
95 | // pour fichiers FITS
|
---|
96 | friend class FITS_NTuple;
|
---|
97 |
|
---|
98 | private:
|
---|
99 | void Initialize(int nvar, int blk, bool fgdouble);
|
---|
100 | void Clean();
|
---|
101 |
|
---|
102 | int_4 mNVar, mNEnt, mBlk, mNBlk;
|
---|
103 | r_4* mVar;
|
---|
104 | r_8* mVarD;
|
---|
105 | vector<string> mNames;
|
---|
106 |
|
---|
107 | bool mFgDouble; // true -> les donnees sont gardees en double
|
---|
108 | vector<r_4*> mPtr; // Pointeur de tableau float
|
---|
109 | vector<r_8*> mPtrD; // Pointeur de tableau double
|
---|
110 |
|
---|
111 | DVList* mInfo; // Infos (variables) attachees au NTuple
|
---|
112 |
|
---|
113 | ThSafeOp* mThS; // != NULL -> Thread safe operations
|
---|
114 | };
|
---|
115 |
|
---|
116 | /*! Prints table information on stream \b s (nt.Show(s)) */
|
---|
117 | inline ostream& operator << (ostream& s, NTuple const & nt)
|
---|
118 | { nt.Show(s); return(s); }
|
---|
119 |
|
---|
120 | /*! Writes the object in the POutPersist stream \b os */
|
---|
121 | inline POutPersist& operator << (POutPersist& os, NTuple & obj)
|
---|
122 | { ObjFileIO<NTuple> fio(&obj); fio.Write(os); return(os); }
|
---|
123 | /*! Reads the object from the PInPersist stream \b is */
|
---|
124 | inline PInPersist& operator >> (PInPersist& is, NTuple & obj)
|
---|
125 | { ObjFileIO<NTuple> fio(&obj); is.SkipToNextObject(); fio.Read(is); return(is); }
|
---|
126 |
|
---|
127 | // Classe pour la gestion de persistance
|
---|
128 | // ObjFileIO<NTuple>
|
---|
129 |
|
---|
130 |
|
---|
131 | } // namespace SOPHYA
|
---|
132 |
|
---|
133 | #endif
|
---|
134 |
|
---|