MpdHitPointSetDraw.h 669 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * FairMCPointsDraw.h
  3. *
  4. * Created on: Sep. 30, 2009
  5. * Author: stockman
  6. */
  7. #ifndef MPDHITPOINTSETDRAW_H
  8. #define MPDHITPOINTSETDRAW_H
  9. #include "MpdPointSetDraw.h"
  10. #include "TVector3.h"
  11. class MpdHitPointSetDraw : public MpdPointSetDraw
  12. {
  13. public:
  14. MpdHitPointSetDraw() {}
  15. MpdHitPointSetDraw(const char* name, Color_t color, Style_t mstyle, Int_t iVerbose = 0)
  16. : MpdPointSetDraw(name, color, mstyle, iVerbose) {}
  17. virtual ~MpdHitPointSetDraw() {}
  18. protected:
  19. TVector3 GetVector(TObject* obj);
  20. void AddEveElementList();
  21. void RemoveEveElementList();
  22. ClassDef(MpdHitPointSetDraw,1);
  23. };
  24. #endif /* MPDHITPOINTSETDRAW_H */