CPlaqueResult.h 408 B

123456789101112131415161718192021222324
  1. #ifndef _CPlaque_Result_h_
  2. #define _CPlaque_Result_h_
  3. #include "PlaqueResult.h"
  4. class CPlaqueResult
  5. {
  6. public:
  7. CPlaqueResult();
  8. virtual ~CPlaqueResult();
  9. bool allocate_vectors( long n_points );
  10. int fill( plaque::PlaqueResult* res );
  11. int fill2( plaque::PlaqueResult* res );
  12. plaque::PlaqueResult* result;
  13. private:
  14. void Initialize();
  15. };
  16. #endif