Class Reference for E1039 Core & Analysis Software
KalmanUtil.cxx
Go to the documentation of this file.
1 /*
2 KalmanUtil.cxx
3 
4 Implementation of the utilities for KalmanFilter, some of the implementation
5 is already included in KalmanUtil.h
6 
7 Author: Kun Liu, liuk@fnal.gov
8 Created: 11-20-2011
9 */
10 
11 #include <iostream>
12 #include <cmath>
13 
14 #include "SRawEvent.h"
15 #include "KalmanUtil.h"
16 
17 void SMatrix::printMatrix(const TMatrixD& m)
18 {
19  int nRow = m.GetNrows();
20  int nCol = m.GetNcols();
21 
22  std::cout << "The matrix has " << nRow << " rows and " << nCol << " columns." << std::endl;
23  for(int i = 0; i < nRow; i++)
24  {
25  std::cout << "Line " << i << ": ";
26  for(int j = 0; j < nCol; j++)
27  {
28  std::cout << m[i][j] << " ";
29  }
30  std::cout << std::endl;
31  }
32 }
33 
34 void SMatrix::printMatrix(const TMatrixD& m, std::string str)
35 {
36  int nRow = m.GetNrows();
37  int nCol = m.GetNcols();
38 
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++)
42  {
43  std::cout << "Line " << i << ": ";
44  for(int j = 0; j < nCol; j++)
45  {
46  std::cout << m[i][j] << " ";
47  }
48  std::cout << std::endl;
49  }
50 }
51 
52 TMatrixD SMatrix::invertMatrix(const TMatrixD& m)
53 {
54  TMatrixD mout = m;
55  if(m.GetNrows() > 1 && m.GetNrows() <= 5)
56  {
57  mout.InvertFast();
58  }
59  else if(m.GetNrows() == 1)
60  {
61  mout[0][0] = 1./m[0][0];
62  }
63  else
64  {
65  mout.Invert();
66  }
67 
68  return mout;
69 }
70 
71 TMatrixD SMatrix::invertMatrixFast(const TMatrixD& m)
72 {
73  TMatrixD mout = m;
74  mout.InvertFast();
75 
76  return mout;
77 }
78 
79 TMatrixD SMatrix::transposeMatrix(const TMatrixD& m)
80 {
81  TMatrixD mout = m;
82  mout.T();
83 
84  return mout;
85 }
86 
87 void SMatrix::unitMatrix(TMatrixD& m)
88 {
89  int nRows = m.GetNrows();
90  int nCols = m.GetNcols();
91  for(int i = 0; i < nRows; i++)
92  {
93  for(int j = 0; j < nCols; j++)
94  {
95  if(i == j)
96  {
97  m[i][j] = 1.;
98  }
99  else
100  {
101  m[i][j] = 0.;
102  }
103  }
104  }
105 }
106 
107 void SMatrix::zeroMatrix(TMatrixD& m)
108 {
109  int nRows = m.GetNrows();
110  int nCols = m.GetNcols();
111  for(int i = 0; i < nRows; i++)
112  {
113  for(int j = 0; j < nCols; j++)
114  {
115  m[i][j] = 0.;
116  }
117  }
118 }
119 
120 TMatrixD SMatrix::getABC(const TMatrixD& A, const TMatrixD& B, const TMatrixD& C)
121 {
122  return A*B*C;
123 }
124 
125 TMatrixD SMatrix::getABCt(const TMatrixD& A, const TMatrixD& B, const TMatrixD& C)
126 {
127  TMatrixD Ct = C;
128  Ct.T();
129 
130  return A*B*Ct;
131 }
132 
133 TMatrixD SMatrix::getAtBC(const TMatrixD& A, const TMatrixD& B, const TMatrixD& C)
134 {
135  TMatrixD At = A;
136  At.T();
137 
138  return At*B*C;
139 }
140 
141 TMatrixD SMatrix::getABtC(const TMatrixD& A, const TMatrixD& B, const TMatrixD& C)
142 {
143  TMatrixD Bt = B;
144  Bt.T();
145 
146  return A*Bt*C;
147 }
148 
149 TMatrixD SMatrix::getABtCinv(const TMatrixD& A, const TMatrixD& B, const TMatrixD& C)
150 {
151  TMatrixD Bt = B;
152  Bt.T();
153  TMatrixD Cinv = invertMatrix(C);
154 
155  return A*Bt*Cinv;
156 }
157 
159 {
160  _state_kf[0][0] = -1.*_state_kf[0][0];
161 
162  for(int i = 1; i < 5; i++)
163  {
164  _covar_kf[0][i] = -1.*_covar_kf[0][i];
165  _covar_kf[i][0] = -1.*_covar_kf[i][0];
166  }
167 }
168 
169 double TrkPar::get_mom(double& px, double& py, double& pz)
170 {
171  double p = 1./fabs(_state_kf[0][0]);
172  pz = p/sqrt(1. + _state_kf[1][0]*_state_kf[1][0] + _state_kf[2][0]*_state_kf[2][0]);
173  px = pz*_state_kf[1][0];
174  py = pz*_state_kf[2][0];
175 
176  return p;
177 }
178 
179 double TrkPar::get_pos(double& x, double& y, double& z)
180 {
181  z = _z;
182  x = _state_kf[3][0];
183  y = _state_kf[4][0];
184 
185  return sqrt(x*x + y*y);
186 }
187 
189 {
190  std::cout << "Content of the track parameters at z = " << _z << std::endl;
191  std::cout << "==============================================" << std::endl;
192  SMatrix::printMatrix(_state_kf, "State vector");
193  SMatrix::printMatrix(_covar_kf, "Covariance matrix");
194  std::cout << "==============================================" << std::endl;
195 }
196 
197 void Node::print(bool verbose)
198 {
199  std::cout << "The status of this node " << std::endl;
200  std::cout << "Chi square of this node: " << _chisq << std::endl;
201 
202  if(_prediction_done)
203  {
204  std::cout << "The prediction is done! " << std::endl;
205  _predicted.print();
206  }
207 
208  if(_filter_done)
209  {
210  std::cout << "The filtering is done! " << std::endl;
211  _filtered.print();
212 
213  //SMatrix::printMatrix(getKalmanGain(), "Kalman gain matrix");
214  SMatrix::printMatrix(_measurement, "The actual measurement");
215  SMatrix::printMatrix(_projector*_predicted._state_kf, "The predicted measurement");
216  SMatrix::printMatrix(_projector*_filtered._state_kf, "The filtered measurement");
217  }
218 
219  if(_smooth_done)
220  {
221  std::cout << "The smoothing is done! " << std::endl;
222  _smoothed.print();
223 
224  SMatrix::printMatrix(_projector*_smoothed._state_kf, "The smoothed measurement");
225  }
226 
227  if(!verbose) return;
228  SMatrix::printMatrix(_measurement, "The measurement of this node: ");
229  SMatrix::printMatrix(_measurement_cov, "The covariance of the measurement of this node: ");
230  SMatrix::printMatrix(_projector, "The projection matrix: ");
231  SMatrix::printMatrix(_propagator, "The propagation matrix: ");
232 }
233 
235 {
236  _measurement.ResizeTo(1, 1);
237  _measurement_cov.ResizeTo(1, 1);
238 
239  _projector.ResizeTo(1, 5);
240  _propagator.ResizeTo(5, 5);
241 
242  _prediction_done = false;
243  _filter_done = false;
244  _smooth_done = false;
245 
246  _chisq = 0.;
247 }
248 
249 Node::Node(const Hit& hit_input)
250 {
251  _hit = hit_input;
252 
253  _measurement.ResizeTo(1, 1);
254  _measurement_cov.ResizeTo(1, 1);
255 
256  _projector.ResizeTo(1, 5);
257  _propagator.ResizeTo(5, 5);
258 
259  _prediction_done = false;
260  _filter_done = false;
261  _smooth_done = false;
262 
263  _chisq = 0.;
264 
265  GeomSvc* geometrySvc = GeomSvc::instance();
266 
267  double sigma;
268  sigma = geometrySvc->getPlaneResolution(_hit.detectorID);
269  _measurement[0][0] = _hit.pos + _hit.driftDistance;
270  _measurement_cov[0][0] = sigma*sigma;
271 
272  _projector[0][3] = geometrySvc->getCostheta(_hit.detectorID);
273  _projector[0][4] = geometrySvc->getSintheta(_hit.detectorID);
274 
275  _z = geometrySvc->getPlanePosition(_hit.detectorID);
276  _predicted._z = _z;
277  _filtered._z = _z;
278  _smoothed._z = _z;
279 }
280 
281 Node::Node(const SignedHit& hit_input)
282 {
283  _hit = hit_input.hit;
284  _hit.index = _hit.index*hit_input.sign;
285 
286  _measurement.ResizeTo(1, 1);
287  _measurement_cov.ResizeTo(1, 1);
288 
289  _projector.ResizeTo(1, 5);
290  _propagator.ResizeTo(5, 5);
291 
292  _prediction_done = false;
293  _filter_done = false;
294  _smooth_done = false;
295 
296  _chisq = 0.;
297 
298  GeomSvc* geometrySvc = GeomSvc::instance();
299 
300  double sigma;
301  if(hit_input.sign != 0)
302  {
303  sigma = geometrySvc->getPlaneResolution(_hit.detectorID);
304  }
305  else
306  {
307  sigma = _hit.driftDistance;//geometrySvc->getPlaneSpacing(_hit.detectorID)/sqrt(12.);
308  }
309  _measurement[0][0] = _hit.pos + hit_input.sign*_hit.driftDistance;
310  _measurement_cov[0][0] = sigma*sigma;
311 
312  _projector[0][3] = geometrySvc->getCostheta(_hit.detectorID);
313  _projector[0][4] = geometrySvc->getSintheta(_hit.detectorID);
314 
315  _z = geometrySvc->getPlanePosition(_hit.detectorID);
316  _predicted._z = _z;
317  _filtered._z = _z;
318  _smoothed._z = _z;
319 }
320 
321 void Node::setMeasurement(TMatrixD& m, TMatrixD& cov)
322 {
323  _measurement = m;
324  _measurement_cov = cov;
325 }
326 
328 {
329  TMatrixD mout = _measurement;
330  mout -= (_projector*_predicted._state_kf);
331 
332  return mout;
333 }
334 
336 {
337  TMatrixD mout = _measurement_cov;
338  mout += SMatrix::getABCt(_projector, _predicted._covar_kf, _projector);
339 
340  return mout;
341 }
342 
344 {
345  TMatrixD mout = _measurement;
346  mout -= (_projector*_filtered._state_kf);
347 
348  return mout;
349 }
350 
352 {
353  TMatrixD mout = _measurement_cov;
354  mout += SMatrix::getABCt(_projector, _filtered._covar_kf, _projector);
355 
356  return mout;
357 }
358 
360 {
361  TMatrixD mout = _measurement;
362  mout -= (_projector*_smoothed._state_kf);
363 
364  return mout;
365 }
366 
368 {
369  TMatrixD mout = _measurement_cov;
370  mout += SMatrix::getABCt(_projector, _smoothed._covar_kf, _projector);
371 
372  return mout;
373 }
374 
376 {
377  TMatrixD K = SMatrix::getABtC(_predicted._covar_kf, _projector, SMatrix::invertMatrix(_measurement_cov + SMatrix::getABCt(_projector, _predicted._covar_kf, _projector)));
378  return K;
379 }
380 
382 {
383  _prediction_done = false;
384  _filter_done = false;
385  _smooth_done = false;
386 
387  _chisq = 0.;
388 }
389 
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
double getPlanePosition(int detectorID) const
Definition: GeomSvc.h:235
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
double getPlaneResolution(int detectorID) const
Definition: GeomSvc.h:245
double getCostheta(int detectorID) const
Definition: GeomSvc.h:239
double getSintheta(int detectorID) const
Definition: GeomSvc.h:240
Definition of hit structure.
Definition: SRawEvent.h:35
Int_t index
Definition: SRawEvent.h:77
Float_t pos
Definition: SRawEvent.h:82
Short_t detectorID
Definition: SRawEvent.h:78
Float_t driftDistance
Definition: SRawEvent.h:81
TMatrixD getSmoothedResidual()
Definition: KalmanUtil.cxx:359
TMatrixD getSmoothedResidualCov()
Definition: KalmanUtil.cxx:367
void print(bool verbose=true)
print for debugging purposes
Definition: KalmanUtil.cxx:197
TMatrixD getKalmanGain()
Definition: KalmanUtil.cxx:375
TMatrixD getPredictedResidualCov()
Definition: KalmanUtil.cxx:335
TMatrixD getFilteredResidual()
Definition: KalmanUtil.cxx:343
void resetFlags()
Definition: KalmanUtil.cxx:381
Node()
default constructor, only initialize the matrix dimension
Definition: KalmanUtil.cxx:234
TMatrixD getPredictedResidual()
Matrix calculations, should be called as less as possible.
Definition: KalmanUtil.cxx:327
void setMeasurement(TMatrixD &m, TMatrixD &cov)
Sets.
Definition: KalmanUtil.cxx:321
TMatrixD getFilteredResidualCov()
Definition: KalmanUtil.cxx:351
static TMatrixD getABtCinv(const TMatrixD &A, const TMatrixD &B, const TMatrixD &C)
Definition: KalmanUtil.cxx:149
static TMatrixD getABtC(const TMatrixD &A, const TMatrixD &B, const TMatrixD &C)
Definition: KalmanUtil.cxx:141
static TMatrixD getABC(const TMatrixD &A, const TMatrixD &B, const TMatrixD &C)
Definition: KalmanUtil.cxx:120
static void unitMatrix(TMatrixD &m)
Definition: KalmanUtil.cxx:87
static TMatrixD getABCt(const TMatrixD &A, const TMatrixD &B, const TMatrixD &C)
Definition: KalmanUtil.cxx:125
static TMatrixD getAtBC(const TMatrixD &A, const TMatrixD &B, const TMatrixD &C)
Definition: KalmanUtil.cxx:133
static void zeroMatrix(TMatrixD &m)
Definition: KalmanUtil.cxx:107
static TMatrixD invertMatrix(const TMatrixD &m)
Definition: KalmanUtil.cxx:52
static TMatrixD invertMatrixFast(const TMatrixD &m)
Definition: KalmanUtil.cxx:71
static void printMatrix(const TMatrixD &m)
Definition: KalmanUtil.cxx:17
static TMatrixD transposeMatrix(const TMatrixD &m)
Definition: KalmanUtil.cxx:79
void print()
print for debugging purpose
Definition: KalmanUtil.cxx:188
TMatrixD _state_kf
State vectors and its covariance.
Definition: KalmanUtil.h:85
void flip_charge()
Definition: KalmanUtil.cxx:158
TMatrixD _covar_kf
Definition: KalmanUtil.h:86
double get_pos(double &x, double &y, double &z)
Definition: KalmanUtil.cxx:179
double get_mom()
Definition: KalmanUtil.h:64
double _z
Definition: KalmanUtil.h:87