HYDRA_development_version
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
hgeomvertexfit.h
Go to the documentation of this file.
1 #ifndef HGEOMVERTEXFIT_H
2 #define HGEOMVERTEXFIT_H
3 
4 #include "TObject.h"
5 #include "hgeommatrix.h"
6 #include "hgeomvector.h"
7 
8 class HGeomVertexFit : public TObject {
9 private:
10  HGeomMatrix fM; //Temporal matrix for calculations
11 protected:
12  HGeomMatrix fSys; //LSM system inverse matrix
13  HGeomVector fB; //LSM independent term
14 public:
15  HGeomVertexFit(void);
16  ~HGeomVertexFit(void);
17  void addLine(const HGeomVector &r,const HGeomVector &alpha,
18  const Double_t w=1.0);
19  void getVertex(HGeomVector &out);
20  void reset(void);
21  ClassDef(HGeomVertexFit,0)
22 };
23 
24 #endif
HGeomVector fB
HGeomMatrix fM
void addLine(const HGeomVector &r, const HGeomVector &alpha, const Double_t w=1.0)
void getVertex(HGeomVector &out)
void reset(void)
HGeomMatrix fSys