Skip to content
Snippets Groups Projects
Commit 1ab17393 authored by Tobias Bockh's avatar Tobias Bockh
Browse files

fix problem with eigen library

parent eeed24b5
No related branches found
No related tags found
No related merge requests found
#ifndef FASERACTSKALMANFILTER_LINEARFIT_H
#define FASERACTSKALMANFILTER_LINEARFIT_H
#include "eigen3/Eigen/Dense"
#include "Acts/Definitions/Algebra.hpp"
namespace LinearFit {
using Vector2 = Eigen::Matrix<double, 2, 1>;
using Vector2 = Acts::Vector2;
std::pair <Vector2, Vector2 > linearFit(const std::vector<Vector2> &points) {
size_t nPoints = points.size();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment