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, 9 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

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