ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
VertexFitter.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file VertexFitter.h
1 #ifndef G4HOUGH_VERTEXFITTER_H
2 #define G4HOUGH_VERTEXFITTER_H
3 
4 #include <Eigen/Core>
5 
6 // standard includes
7 #include <vector>
8 
9 class SimpleTrack3D;
10 
18 class VertexFitter {
19  public:
20  VertexFitter();
21  virtual ~VertexFitter() {}
22 
23  bool findVertex(std::vector<SimpleTrack3D>& tracks,
24  std::vector<Eigen::Matrix<float, 5, 5> >& covariances,
25  std::vector<float>& vertex, float sigma, bool fix_xy = false);
26 
27  bool findVertex(std::vector<SimpleTrack3D>& tracks,
28  std::vector<float>& vertex, float sigma, bool fix_xy = false);
29 
30  protected:
31 };
32 
33 #endif // __VERTEXFITTER_H__