ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/staticProps/CorrWrap.hpp
Revision: 803
Committed: Fri Oct 10 17:10:22 2003 UTC (20 years, 8 months ago) by mmeineke
File size: 550 byte(s)
Log Message:
removed the props directory, and moved everything over to staticProps

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__