ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/tags/export/OOPSE-1.0/staticProps/CorrWrap.hpp
Revision: 1335
Committed: Fri Jul 16 18:58:04 2004 UTC (20 years ago)
File size: 550 byte(s)
Log Message:
This commit was manufactured by cvs2svn to create tag 'export'.

File Contents

# Content
1 #ifndef __CORRWRAP_H__
2 #define __CORRWRAP_H__
3
4
5 class CorrWrap{
6
7 public:
8 CorrWrap();
9 ~CorrWrap();
10
11 void init1D( int theNbins );
12 void init2D( int theNbins );
13 void init3D( int theNbins );
14
15 double *corrValues1D;
16 double **corrValues2D;
17 double ***corrValues3D;
18
19 double *rValues1D;
20 double **rValues2D;
21 double ***rValues3D;
22
23 int nDimensions;
24 int nBins;
25
26 char corrName1D [200];
27 char corrName2D [200];
28 char corrName3D [200];
29
30 char rName1D [200];
31 char rName2D [200];
32 char rName3D [200];
33 };
34
35 #endif // __CORRWRAP_H__