PandaRoot
PndVertex.h
Go to the documentation of this file.
1 /*
2  * PndVertex.h
3  *
4  * Created on: Aug 25, 2009
5  * Author: stockman
6  */
7 
8 #ifndef PNDVERTEX_H_
9 #define PNDVERTEX_H_
10 
11 #include "FairHit.h"
12 
13 class PndVertex : public FairHit {
14  public:
15  PndVertex();
16  PndVertex(double x, double y, double z)
17  {
18  SetX(x);
19  SetY(y);
20  SetZ(z);
21  }
22  virtual ~PndVertex();
23 
24  ClassDef(PndVertex, 0);
25 };
26 
27 #endif /* PNDVERTEX_H_ */
virtual ~PndVertex()
PndVertex(double x, double y, double z)
Definition: PndVertex.h:16
ClassDef(PndVertex, 0)