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 |