QwAnalysis
QwVertex.cc
Go to the documentation of this file.
1 #include "QwVertex.h"
2 
3 #include "QwTrack.h"
4 
6 {
7  // TODO
8 }
9 
10 QwVertex::QwVertex(const TVector3& position)
11 {
12  fCoord[0] = position.X();
13  fCoord[1] = position.Y();
14  fCoord[2] = position.Z();
15 }
16 
17 QwVertex::QwVertex(const QwTrack& track1, const QwTrack& track2)
18 {
19  // TODO
20 }
21 
22 QwVertex::QwVertex(double x, double y, double z)
23 {
24  fCoord[0] = x;
25  fCoord[1] = y;
26  fCoord[2] = z;
27 }
Definition of the track class.
Contains the complete track as a concatenation of partial tracks.
Definition: QwTrack.h:30
QwVertex()
Definition: QwVertex.cc:5
double fCoord[3]
coordinates of vertex
Definition: QwVertex.h:38