EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FairHitDraw.cxx
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file FairHitDraw.cxx
1 /*
2  * FairHitDraw.cpp
3  *
4  * Created on: Apr 16, 2009
5  * Author: stockman
6  */
7 
8 #include "FairHitDraw.h"
9 #include "FairHit.h"
10 
12 {
13 }
14 
15 FairHitDraw::FairHitDraw(const char* name, Int_t iVerbose):FairBoxSetDraw(name, iVerbose)
16 {
17 }
18 
20 {
21  FairHit* hit =(FairHit*)obj;
22  return TVector3(hit->GetX(), hit->GetY(), hit->GetZ());
23 }
24