1 #ifndef LINEARTRACKREGRESSION_H
2 #define LINEARTRACKREGRESSION_H
42 float slope1, intersept1, slope2, intersept2;
61 #endif // LINEARTRACKREGRESSION_H
static LinearTrackRegression::StraightLine doRegressionX(EVENT::Track const *track)
gives back parameters for x = slope1 * y + intersept1 z = slope2 * y + intersept2 ...
Definition: LinearTrackRegression.cc:14
static LinearTrackRegression::StraightLine doRegressionY(EVENT::Track const *track)
gives back parameters for y = slope1 * x + intersept1 z = slope2 * x + intersept2 ...
Definition: LinearTrackRegression.cc:94
A nested struct which is used as return value of the regression.
Definition: LinearTrackRegression.h:40
Helper class to perform a linear regression on a track.
Definition: LinearTrackRegression.h:20