#include <StateSegmentMatcher.h>
Public Member Functions | |
AlgebraicSymMatrix22 | errorMatrix () const |
AlgebraicVector2 | paramVector () const |
Tsos2DZed (TrajectoryStateOnSurface *) | |
Private Attributes | |
AlgebraicVector2 | tsos_2d_zed |
AlgebraicSymMatrix22 | tsosErr_22_zed |
Definition at line 63 of file StateSegmentMatcher.h.
Tsos2DZed::Tsos2DZed | ( | TrajectoryStateOnSurface * | tsos | ) |
Definition at line 167 of file StateSegmentMatcher.cc.
References TrajectoryStateOnSurface::localError(), TrajectoryStateOnSurface::localParameters(), LocalTrajectoryError::matrix(), and LocalTrajectoryParameters::vector().
{ AlgebraicVector5 tsos_v = tsos->localParameters().vector(); tsos_2d_zed[0] = tsos_v[2]; tsos_2d_zed[1] = tsos_v[4]; AlgebraicSymMatrix55 E = tsos->localError().matrix(); tsosErr_22_zed(0,0) = E(2,2);tsosErr_22_zed(0,1) = E(2,4); tsosErr_22_zed(1,0) = E(4,2);tsosErr_22_zed(1,1) = E(4,4); }
AlgebraicSymMatrix22 Tsos2DZed::errorMatrix | ( | ) | const |
Definition at line 182 of file StateSegmentMatcher.cc.
Referenced by StateSegmentMatcher::StateSegmentMatcher().
{return tsosErr_22_zed;}
AlgebraicVector2 Tsos2DZed::paramVector | ( | ) | const |
Definition at line 179 of file StateSegmentMatcher.cc.
Referenced by StateSegmentMatcher::StateSegmentMatcher().
{return tsos_2d_zed;}
AlgebraicVector2 Tsos2DZed::tsos_2d_zed [private] |
Definition at line 75 of file StateSegmentMatcher.h.
Definition at line 76 of file StateSegmentMatcher.h.