| 3 |
|
|
| 4 |
|
#include <vector> |
| 5 |
|
|
| 6 |
< |
3include "SimInfo.hpp" |
| 6 |
> |
#include "SimInfo.hpp" |
| 7 |
|
|
| 8 |
|
#include "PairCorrList.hpp" |
| 9 |
|
#include "PairCorrType.hpp" |
| 17 |
|
AllCorr(); |
| 18 |
|
~AllCorr(); |
| 19 |
|
|
| 20 |
< |
void setNbins( theNbins ); |
| 20 |
> |
void setNbins( int theNbins ); |
| 21 |
|
void setPairCorrList( vector <PairCorrList> &theList ); |
| 22 |
|
void setFrames( SimInfo* theInfoArray, int theNframes, |
| 23 |
|
DumpReader* theReader ); |
| 34 |
|
bool matchJ(int j); |
| 35 |
|
|
| 36 |
|
void setFrameVolume( double theVolume ); |
| 37 |
< |
void pairCorrelate( double[3] Rij, double dist, |
| 38 |
< |
double[3] uHatI, double[3] uHatJ ); |
| 37 |
> |
void pairCorrelate( double Rij[3], double dist, |
| 38 |
> |
double uHatI[3], double uHatJ[3] ); |
| 39 |
|
void accumulateFrame( void ); |
| 40 |
|
void writeCorrs( void ); |
| 41 |
|
|
| 53 |
|
bool haveLength; |
| 54 |
|
bool pairCorrSet; |
| 55 |
|
bool havePairCorrs; |
| 56 |
< |
bool havestaticCorrs; |
| 56 |
> |
bool haveStaticCorrs; |
| 57 |
|
bool isSeparateOut; |
| 58 |
|
bool haveNbins; |
| 59 |
|
|