19 int nRow = m.GetNrows();
20 int nCol = m.GetNcols();
22 std::cout <<
"The matrix has " << nRow <<
" rows and " << nCol <<
" columns." << std::endl;
23 for(
int i = 0; i < nRow; i++)
25 std::cout <<
"Line " << i <<
": ";
26 for(
int j = 0; j < nCol; j++)
28 std::cout << m[i][j] <<
" ";
30 std::cout << std::endl;
36 int nRow = m.GetNrows();
37 int nCol = m.GetNcols();
39 std::cout <<
"Printing the content of matrix: " << str << std::endl;
40 std::cout <<
"The matrix has " << nRow <<
" rows and " << nCol <<
" columns." << std::endl;
41 for(
int i = 0; i < nRow; i++)
43 std::cout <<
"Line " << i <<
": ";
44 for(
int j = 0; j < nCol; j++)
46 std::cout << m[i][j] <<
" ";
48 std::cout << std::endl;
55 if(m.GetNrows() > 1 && m.GetNrows() <= 5)
59 else if(m.GetNrows() == 1)
61 mout[0][0] = 1./m[0][0];
89 int nRows = m.GetNrows();
90 int nCols = m.GetNcols();
91 for(
int i = 0; i < nRows; i++)
93 for(
int j = 0; j < nCols; j++)
109 int nRows = m.GetNrows();
110 int nCols = m.GetNcols();
111 for(
int i = 0; i < nRows; i++)
113 for(
int j = 0; j < nCols; j++)
162 for(
int i = 1; i < 5; i++)
185 return sqrt(x*x + y*y);
190 std::cout <<
"Content of the track parameters at z = " <<
_z << std::endl;
191 std::cout <<
"==============================================" << std::endl;
194 std::cout <<
"==============================================" << std::endl;
199 std::cout <<
"The status of this node " << std::endl;
200 std::cout <<
"Chi square of this node: " << _chisq << std::endl;
204 std::cout <<
"The prediction is done! " << std::endl;
210 std::cout <<
"The filtering is done! " << std::endl;
221 std::cout <<
"The smoothing is done! " << std::endl;
236 _measurement.ResizeTo(1, 1);
237 _measurement_cov.ResizeTo(1, 1);
239 _projector.ResizeTo(1, 5);
240 _propagator.ResizeTo(5, 5);
242 _prediction_done =
false;
243 _filter_done =
false;
244 _smooth_done =
false;
253 _measurement.ResizeTo(1, 1);
254 _measurement_cov.ResizeTo(1, 1);
256 _projector.ResizeTo(1, 5);
257 _propagator.ResizeTo(5, 5);
259 _prediction_done =
false;
260 _filter_done =
false;
261 _smooth_done =
false;
270 _measurement_cov[0][0] = sigma*sigma;
283 _hit = hit_input.
hit;
286 _measurement.ResizeTo(1, 1);
287 _measurement_cov.ResizeTo(1, 1);
289 _projector.ResizeTo(1, 5);
290 _propagator.ResizeTo(5, 5);
292 _prediction_done =
false;
293 _filter_done =
false;
294 _smooth_done =
false;
301 if(hit_input.
sign != 0)
310 _measurement_cov[0][0] = sigma*sigma;
324 _measurement_cov = cov;
329 TMatrixD mout = _measurement;
330 mout -= (_projector*_predicted.
_state_kf);
337 TMatrixD mout = _measurement_cov;
345 TMatrixD mout = _measurement;
346 mout -= (_projector*_filtered.
_state_kf);
353 TMatrixD mout = _measurement_cov;
361 TMatrixD mout = _measurement;
362 mout -= (_projector*_smoothed.
_state_kf);
369 TMatrixD mout = _measurement_cov;
383 _prediction_done =
false;
384 _filter_done =
false;
385 _smooth_done =
false;
User interface class about the geometry of detector planes.
double getPlanePosition(int detectorID) const
static GeomSvc * instance()
singlton instance
double getPlaneResolution(int detectorID) const
double getCostheta(int detectorID) const
double getSintheta(int detectorID) const
Definition of hit structure.
TMatrixD getSmoothedResidual()
TMatrixD getSmoothedResidualCov()
void print(bool verbose=true)
print for debugging purposes
TMatrixD getPredictedResidualCov()
TMatrixD getFilteredResidual()
Node()
default constructor, only initialize the matrix dimension
TMatrixD getPredictedResidual()
Matrix calculations, should be called as less as possible.
void setMeasurement(TMatrixD &m, TMatrixD &cov)
Sets.
TMatrixD getFilteredResidualCov()
static TMatrixD getABtCinv(const TMatrixD &A, const TMatrixD &B, const TMatrixD &C)
static TMatrixD getABtC(const TMatrixD &A, const TMatrixD &B, const TMatrixD &C)
static TMatrixD getABC(const TMatrixD &A, const TMatrixD &B, const TMatrixD &C)
static void unitMatrix(TMatrixD &m)
static TMatrixD getABCt(const TMatrixD &A, const TMatrixD &B, const TMatrixD &C)
static TMatrixD getAtBC(const TMatrixD &A, const TMatrixD &B, const TMatrixD &C)
static void zeroMatrix(TMatrixD &m)
static TMatrixD invertMatrix(const TMatrixD &m)
static TMatrixD invertMatrixFast(const TMatrixD &m)
static void printMatrix(const TMatrixD &m)
static TMatrixD transposeMatrix(const TMatrixD &m)
void print()
print for debugging purpose
TMatrixD _state_kf
State vectors and its covariance.
double get_pos(double &x, double &y, double &z)