Fixed text file permissions
[snark14.git] / tools / Display / proj.hpp
1 /** @file proj.hpp
2     @package snark14Display
3     @author Bruno M. Carvalho and Deniz Sarioz
4     licensed under (open-source) QPL v1.0
5     which accompanies this distribution in the file QPL
6 */
7
8 #ifndef PROJ_H
9 #define PROJ_H
10
11 class Snarkproj {
12 public:
13     Snarkproj( DIGDataFormat format );
14     Snarkproj();
15     ~Snarkproj();
16     //    void readProj(DIGDataFormat format);
17     void readProj();
18     double** getProj();
19     double getMin();
20     double getMax();
21     bool isLoaded();
22
23     double **proj;
24     double max;
25     double min;
26     bool isloaded;
27     DIGDataFormat fileformat;
28 private:
29     double** matrix(int  nrl,int nrh,int ncl,int nch);
30 };
31
32 #endif // PROJ_H