MpdHitDraw.h 633 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * MpdHitDraw.h
  3. *
  4. * Created on: Apr 16, 2009
  5. * Author: stockman
  6. *
  7. * Simple method to draw points derived from FairHit
  8. */
  9. #ifndef MPDHITDRAW_H
  10. #define MPDHITDRAW_H
  11. #include "MpdBoxSetDraw.h"
  12. #include "TVector3.h"
  13. class MpdHitDraw: public MpdBoxSetDraw
  14. {
  15. public:
  16. MpdHitDraw() {}
  17. /** Standard constructor
  18. *@param name Name of task
  19. *@param iVerbose Verbosity level
  20. **/
  21. MpdHitDraw(const char* name, Int_t iVerbose = 1)
  22. : MpdBoxSetDraw(name, iVerbose) {}
  23. protected:
  24. TVector3 GetVector(TObject* obj);
  25. ClassDef(MpdHitDraw,1);
  26. };
  27. #endif /* MPDHITDRAW_H */