19 |
|
class Vertex : public BaseVertex |
20 |
|
{ |
21 |
|
public: |
22 |
< |
Vertex() : |
23 |
< |
fChi2(0.0), fNdof(0), fNTracks(0) {} |
22 |
> |
Vertex() : fChi2(0.0), fNdof(0), fNTracks(0) {} |
23 |
|
Vertex(Double_t x, Double_t y, Double_t z) : |
24 |
|
BaseVertex(x,y,z), fChi2(0), fNdof(0), fNTracks(0) {} |
25 |
|
Vertex(Double_t x, Double_t y, Double_t z, Double_t xErr, Double_t yErr, Double_t zErr) : |
26 |
|
BaseVertex(x,y,z,xErr,yErr,zErr), fChi2(0.0), fNdof(0), fNTracks(0) {} |
27 |
< |
Vertex(const ThreeVector &pos) : |
27 |
> |
Vertex(const ThreeVector &pos) : |
28 |
|
BaseVertex(pos), fChi2(0), fNdof(0), fNTracks(0) {} |
30 |
– |
~Vertex() {} |
29 |
|
|
30 |
|
Double_t Chi2() const { return fChi2; } |
31 |
|
UInt_t Ndof() const { return fNdof; } |