Revision: | 762 |
Committed: | Fri Sep 12 20:51:29 2003 UTC (21 years, 7 months ago) by mmeineke |
File size: | 286 byte(s) |
Log Message: | added AllCorr. It eill still need some work |
# | Content |
---|---|
1 | #ifndef __ALLCORR_H__ |
2 | #define __ALLCORR_H__ |
3 | |
4 | #include <vector> |
5 | |
6 | #include "PairCorrList.hpp" |
7 | #include "PairCorrType.hpp" |
8 | |
9 | class AllCorr { |
10 | |
11 | public: |
12 | |
13 | AllCorr(){} |
14 | ~AllCorr(){} |
15 | |
16 | void setCorrList( vector <PairCorrList> &theList ); |
17 | |
18 | protected: |
19 | |
20 | PairCorrType *corrList; |
21 | }; |
22 | |
23 | |
24 | #endif |