ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
VertexFinder.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file VertexFinder.h
1 #ifndef HELIXHOUGH_VERTEXFINDER_H
2 #define HELIXHOUGH_VERTEXFINDER_H
3 
4 #include <Eigen/Core>
5 
6 // standard includes
7 #include <vector>
8 
9 class SimpleTrack3D;
10 
18 class VertexFinder {
19  public:
20  VertexFinder();
21  virtual ~VertexFinder() {}
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 // __VERTEXFINDER_H__