ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/props/AllCorr.hpp
Revision: 795
Committed: Thu Oct 2 22:06:53 2003 UTC (21 years, 10 months ago) by mmeineke
File size: 522 byte(s)
Log Message:
finishing up the constructs needed to get this program up and running

File Contents

# User Rev Content
1 mmeineke 762 #ifndef __ALLCORR_H__
2     #define __ALLCORR_H__
3    
4     #include <vector>
5    
6 mmeineke 795 3include "SimInfo.hpp"
7    
8 mmeineke 762 #include "PairCorrList.hpp"
9     #include "PairCorrType.hpp"
10 mmeineke 795 #include "ReadWrite.hpp"
11 mmeineke 762
12 mmeineke 795
13 mmeineke 762 class AllCorr {
14    
15     public:
16    
17     AllCorr(){}
18     ~AllCorr(){}
19    
20 mmeineke 795 void setPairCorrList( vector <PairCorrList> &theList );
21     void setFrames( SimInfo* theInfoArray, int theNframes,
22     DumpReader* theReader );
23 mmeineke 762
24 mmeineke 795 void initCorrelations( char* outPrefix );
25    
26     void calcCorrelations( void );
27    
28 mmeineke 762 protected:
29    
30 mmeineke 795 PairCorrType **pairCorrs;
31     int nPairs;
32 mmeineke 762 };
33    
34    
35     #endif