Class Reference for E1039 Core & Analysis Software
KalmanTrack.cxx
Go to the documentation of this file.
1 /*
2 KalmanTrack.cxx
3 
4 Implementation of class Seed, KalmanTrack
5 
6 Author: Kun Liu, liuk@fnal.gov
7 Created: 10-14-2012
8 */
9 
10 #include <iostream>
11 #include <cmath>
12 #include <algorithm>
13 
14 #include <geom_svc/GeomSvc.h>
15 #include "KalmanTrack.h"
16 
19 {
20  _hit_index.clear();
21  _nodes.clear();
22 
23  _chisq = 0.;
24  update();
25 }
26 
28 {
29  _chisq = _trk.getChisq();
30 
31  _hit_index.clear();
32  _nodes.clear();
33 
34  GeomSvc *p_geomSvc = GeomSvc::instance();
35  for(int i = 0; i < _trk.getNHits(); i++)
36  {
37  _hit_index.push_back(_trk.getHitIndex(i));
38 
40  Hit _hit = _rawevt->getHit(_recevt->getLocalID(_trk.getHitIndex(i)));
41  _hit.pos = p_geomSvc->getMeasurement(_hit.detectorID, _hit.elementID);
42  _hit.driftDistance = _hit.getSign()*p_geomSvc->getDriftDistance(_hit.detectorID, _hit.tdcTime);
43 
44  Node _node(_hit);
45  _node.setZ(_trk.getZ(i));
46  _node.setChisq(_trk.getChisqAtNode(i));
47  _node.getPredicted()._state_kf = _trk.getStateVector(i);
48  _node.getPredicted()._covar_kf = _trk.getCovariance(i);
49  _node.getPredicted()._z = _trk.getZ(i);
50  _node.getFiltered()._state_kf = _trk.getStateVector(i);
51  _node.getFiltered()._covar_kf = _trk.getCovariance(i);
52  _node.getFiltered()._z = _trk.getZ(i);
53  _node.getSmoothed()._state_kf = _trk.getStateVector(i);
54  _node.getSmoothed()._covar_kf = _trk.getCovariance(i);
55  _node.getSmoothed()._z = _trk.getZ(i);
56  _node.setSmoothDone();
57  _node.setPredictionDone();
58  _node.setFilterDone();
59  }
60 }
61 
62 void KalmanTrack::setTracklet(Tracklet& tracklet, bool wildseedcov)
63 {
64  //Set the whole hit and node list
65  for(auto iter = tracklet.hits.begin(); iter != tracklet.hits.end(); ++iter)
66  {
67  if(iter->hit.index < 0) continue;
68 
69  Node node_add(*iter);
70  _nodes.push_back(node_add);
71  _hit_index.push_back(iter->sign*iter->hit.index);
72  }
73 
74  //Set initial state
75 
76  _trkpar_curr._z = GeomSvc::instance()->getPlanePosition(_nodes.back().getHit().detectorID);
77  _trkpar_curr._state_kf[0][0] = tracklet.getCharge()*tracklet.invP/sqrt(1. + tracklet.tx*tracklet.tx + tracklet.ty*tracklet.ty);
78  _trkpar_curr._state_kf[1][0] = tracklet.tx;
79  _trkpar_curr._state_kf[2][0] = tracklet.ty;
80  _trkpar_curr._state_kf[3][0] = tracklet.getExpPositionX(_trkpar_curr._z);
81  _trkpar_curr._state_kf[4][0] = tracklet.getExpPositionY(_trkpar_curr._z);
82 
83  _trkpar_curr._covar_kf.Zero();
84  if(wildseedcov)
85  {
86  _trkpar_curr._covar_kf[0][0] = 0.001;//1E6*tracklet.err_invP*tracklet.err_invP;
87  _trkpar_curr._covar_kf[1][1] = 0.01;//1E6*tracklet.err_tx*tracklet.err_tx;
88  _trkpar_curr._covar_kf[2][2] = 0.01;//1E6*tracklet.err_ty*tracklet.err_ty;
89  _trkpar_curr._covar_kf[3][3] = 100;//1E6*tracklet.getExpPosErrorX(trkpar_curr._z)*tracklet.getExpPosErrorX(trkpar_curr._z);
90  _trkpar_curr._covar_kf[4][4] = 100;//1E6*tracklet.getExpPosErrorY(trkpar_curr._z)*tracklet.getExpPosErrorY(trkpar_curr._z);
91  }
92 
93  _nodes.back().getPredicted() = _trkpar_curr;
94 }
95 
97 {
98  //FIXME 20 for now; original _chisq < 150
99  if(_chisq < 0 || _chisq/_hit_index.size() > 100) return false;
100  if(_nodes.empty()) return false;
101  if(getMomentumUpstream() < 5. || getMomentumUpstream() > 120.) return false;
102 
103  return true;
104 }
105 
107 {
108  double z_0 = 0.;
109  double z_bend_k = 1064.26;
110  double z_bend_f = 251.4;
111  double kick_f = -2.911;
112  double kick_k = -0.4;
113  double deltaE_kf = 8.12;
114  double c4 = deltaE_kf;
115  double c5 = deltaE_kf/2.;
116 
117  double z_ref = _nodes.front().getZ();
118  double x_ref = _nodes.front().getFiltered()._state_kf[3][0];
119  double axz = _nodes.front().getFiltered()._state_kf[1][0];
120 
121  double charge;
122  if(_nodes.front().getFiltered()._state_kf[0][0] > 0)
123  {
124  charge = 1.;
125  }
126  else
127  {
128  charge = -1.;
129  }
130 
131  double c1 = (z_0 - z_bend_f)*kick_f*charge;
132  double c2 = (z_0 - z_bend_k)*kick_k*charge;
133  double c3 = axz*(z_ref - z_0) - x_ref;
134  double b = c1/c3 + c2/c3 - c4 - c5;
135  double c = c4*c5 - c1*c5/c3 - c2*c4/c3;
136 
137  double disc = b*b - 4.*c;
138  if(disc < 0)
139  {
140  return;
141  }
142 
143  double p = (-b + sqrt(disc))/2.;
144  p -= deltaE_kf;
145 
146  if(p < 0. || p > 100.)
147  {
148  return;
149  }
150 
151  //LogInfo("Momentum updated from " << 1./fabs(_trkpar_curr._state_kf[0][0]) << " to " << p);
152  _trkpar_curr._state_kf[0][0] = charge/p;
153  for(std::list<Node>::iterator iter = _nodes.begin(); iter != _nodes.end(); ++iter)
154  {
155  iter->getPredicted()._state_kf[0][0] = charge/p;
156  iter->getFiltered()._state_kf[0][0] = charge/p;
157  }
158 }
159 
161 {
162  /*
163  _trkpar_curr.flip_charge();
164  for(std::list<Node>::iterator iter = _nodes.begin(); iter != _nodes.end(); ++iter)
165  {
166  if(iter->isPredictionDone()) iter->getPredicted().flip_charge();
167  if(iter->isFilterDone()) iter->getFiltered().flip_charge();
168  if(iter->isSmoothDone()) iter->getSmoothed().flip_charge();
169  }
170  */
171 
172  TrkPar _trkpar = _nodes.back().getSmoothed();
173  _trkpar.flip_charge();
174 
175  _trkpar._covar_kf.Zero();
176  _trkpar._covar_kf[0][0] = 0.001;
177  _trkpar._covar_kf[1][1] = 0.01;
178  _trkpar._covar_kf[2][2] = 0.01;
179  _trkpar._covar_kf[3][3] = 100.;
180  _trkpar._covar_kf[4][4] = 100.;
181 
182  _nodes.back().getPredicted() = _trkpar;
183 }
184 
185 bool KalmanTrack::propagateTo(int detectorID)
186 {
187  Hit hit_dummy;
188  hit_dummy.detectorID = detectorID;
189 
190  _node_next = Node(hit_dummy);
191 
193  kmfit->setCurrTrkpar(_trkpar_curr);
194  if(kmfit->predict(_node_next))
195  {
196  return true;
197  }
198  else
199  {
200  return false;
201  }
202 }
203 
204 double KalmanTrack::getMomentumVertex(double z, double& px, double& py, double& pz)
205 {
206  Node _node_vertex;
207  _node_vertex.setZ(z);
208 
209  TMatrixD m(2, 1), cov(2, 2), proj(2, 5);
210  m[0][0] = 0.;
211  m[1][0] = 0.;
212 
213  cov.Zero();
214  cov[0][0] = 1.;
215  cov[1][1] = 1.;
216 
217  proj.Zero();
218  proj[0][3] = 1.;
219  proj[1][4] = 1.;
220 
221  _node_vertex.getMeasurement().ResizeTo(2, 1);
222  _node_vertex.getMeasurementCov().ResizeTo(2, 2);
223  _node_vertex.getProjector().ResizeTo(2, 5);
224 
225  _node_vertex.getMeasurement() = m;
226  _node_vertex.getMeasurementCov() = cov;
227  _node_vertex.getProjector() = proj;
228 
230  kmfit->setCurrTrkpar(_nodes.front().getSmoothed());
231  kmfit->fit_node(_node_vertex);
232 
233  _chisq_vertex = _node_vertex.getChisq();
234 
235  return _node_vertex.getFiltered().get_mom(px, py, pz);
236  //return _node_vertex.getPredicted().get_mom(px, py, pz);
237 }
238 
240 {
241  const TMatrixD& proj = _node_next.getProjector();
242  const TMatrixD& state = _node_next.getPredicted()._state_kf;
243 
244 #ifdef _DEBUG_ON
245  LogInfo("Expected X: " << _node_next.getPredicted()._state_kf[3][0]);
246  LogInfo("Expected Y: " << _node_next.getPredicted()._state_kf[4][0]);
247 #endif
248 
249  return (proj*state)[0][0];
250 }
251 
253 {
254  const TMatrixD& proj = _node_next.getProjector();
255  const TMatrixD& covar = _node_next.getPredicted()._covar_kf;
256  //const TMatrixD& cov_m = _node_next.getMeasurementCov();
257 
258  //double err_x = sqrt(covar[3][3]);
259  //double err_y = sqrt(covar[4][4]);
260  //double track_err = fabs(proj[0][3]*err_x) + fabs(proj[0][4]*err_y);
261 
262  double track_err_sq = SMatrix::getABCt(proj, covar, proj)[0][0];
263  double wire_spacing = GeomSvc::instance()->getPlaneSpacing(_node_next.getHit().detectorID);
264 
265  //LogInfo("measurement error: " << sqrt(cov_m[0][0]) << ", tracking error: " << track_err);
266  return sqrt(wire_spacing*wire_spacing + track_err_sq);
267 }
268 
270 {
271  Node *_node_prev = &(_nodes.front());
272  double deltaZ_curr, deltaZ_prev;
273  deltaZ_prev = 1E6;
274  for(std::list<Node>::iterator iter = _nodes.begin(); iter != _nodes.end(); ++iter)
275  {
276  deltaZ_curr = fabs(z - iter->getZ());
277  if(deltaZ_curr > deltaZ_prev)
278  {
279  return _node_prev;
280  }
281 
282  deltaZ_prev = deltaZ_curr;
283  _node_prev = &(*iter);
284  }
285 
286  return _node_prev;
287 }
288 
289 void KalmanTrack::getExpPositionFast(double z, double& x, double& y, Node* _node)
290 {
291  if(_node == nullptr)
292  {
293  _node = getNearestNodePtr(z);
294  }
295 
296  TrkPar *_trkpar;
297  if(_node->isSmoothDone())
298  {
299  _trkpar = &(_node->getSmoothed());
300  }
301  else if(_node->isFilterDone())
302  {
303  _trkpar = &(_node->getFiltered());
304  }
305  else
306  {
307  _trkpar = &(_node->getPredicted());
308  }
309 
310  double z_ref = _trkpar->get_z();
311  double x_ref = _trkpar->get_x();
312  double y_ref = _trkpar->get_y();
313  double axz = _trkpar->get_dxdz();
314  double ayz = _trkpar->get_dydz();
315 
316  x = x_ref + axz*(z - z_ref);
317  y = y_ref + ayz*(z - z_ref);
318 }
319 
320 void KalmanTrack::getExpPosErrorFast(double z, double& dx, double& dy, Node* _node)
321 {
322  if(_node == nullptr)
323  {
324  _node = getNearestNodePtr(z);
325  }
326 
327  TrkPar *_trkpar;
328  if(_node->isSmoothDone())
329  {
330  _trkpar = &(_node->getSmoothed());
331  }
332  else if(_node->isFilterDone())
333  {
334  _trkpar = &(_node->getFiltered());
335  }
336  else
337  {
338  _trkpar = &(_node->getPredicted());
339  }
340 
341  double z_ref = _trkpar->get_z();
342  double dx_ref = sqrt(fabs(_trkpar->_covar_kf[3][3]));
343  double dy_ref = sqrt(fabs(_trkpar->_covar_kf[4][4]));
344  double daxz = sqrt(fabs(_trkpar->_covar_kf[1][1]));
345  double dayz = sqrt(fabs(_trkpar->_covar_kf[2][2]));
346 
347  dx = 2.*(dx_ref + fabs(daxz*(z - z_ref)));
348  dy = 2.*(dy_ref + fabs(dayz*(z - z_ref)));
349 }
350 
352 {
353  const TMatrixD& proj = _node_next.getProjector();
354  const TMatrixD& state = _node_next.getPredicted()._state_kf;
355 
356 
357  return proj[0][3]*state[1][0] + proj[0][4]*state[2][0];
358 }
359 
361 {
362  const TMatrixD& proj = _node_next.getProjector();
363  const TMatrixD& covar = _node_next.getPredicted()._covar_kf;
364 
365  double err_x = sqrt(covar[1][1]);
366  double err_y = sqrt(covar[2][2]);
367 
368  return fabs(proj[0][3]*err_x) + fabs(proj[0][4]*err_y);
369 }
370 
372 {
373  Node* _node = nullptr;
374  for(std::list<Node>::iterator iter = _nodes.begin(); iter != _nodes.end(); ++iter)
375  {
376  int detectorID = iter->getHit().detectorID;
377  if(detectorID <= 6)
378  {
379  _node = &(*iter);
380  }
381  else
382  {
383  break;
384  }
385  }
386 
387  return _node;
388 }
389 
391 {
392  Node* _node = nullptr;
393  for(std::list<Node>::reverse_iterator iter = _nodes.rbegin(); iter != _nodes.rend(); ++iter)
394  {
395  int detectorID = iter->getHit().detectorID;
396  if(detectorID > 6)
397  {
398  _node = &(*iter);
399  }
400  else
401  {
402  break;
403  }
404  }
405 
406  return _node;
407 }
408 
410 {
411  int detectorID_begin = stationID*6 - 5;
412  int detectorID_end = stationID*6;
413 
414  double p = -1.;
415  for(std::list<Node>::iterator iter = _nodes.begin(); iter != _nodes.end(); ++iter)
416  {
417  double detectorID = iter->getHit().detectorID;
418  if(detectorID >= detectorID_begin && detectorID <= detectorID_end)
419  {
420  p = iter->getFiltered().get_mom();
421  break;
422  }
423  }
424 
425  return p;
426 }
427 
428 double KalmanTrack::getXZSlopeInStation(int stationID)
429 {
430  int detectorID_begin = stationID*6 - 5;
431  int detectorID_end = stationID*6;
432 
433  double axz = -100.;
434  for(std::list<Node>::iterator iter = _nodes.begin(); iter != _nodes.end(); ++iter)
435  {
436  double detectorID = iter->getHit().detectorID;
437  if(detectorID >= detectorID_begin && detectorID <= detectorID_end)
438  {
439  axz = iter->getFiltered().get_dxdz();
440  break;
441  }
442  }
443 
444  return axz;
445 }
446 
447 double KalmanTrack::getPositionInStation(int stationID, double& x, double& y, double& z)
448 {
449  int detectorID_begin = stationID*6 - 5;
450  int detectorID_end = stationID*6;
451 
452  x = 9999;
453  y = 9999;
454  for(std::list<Node>::iterator iter = _nodes.begin(); iter != _nodes.end(); ++iter)
455  {
456  double detectorID = iter->getHit().detectorID;
457  if(detectorID >= detectorID_begin && detectorID <= detectorID_end)
458  {
459  z = iter->getZ();
460  if(iter->isSmoothDone())
461  {
462  x = iter->getSmoothed().get_x();
463  y = iter->getSmoothed().get_y();
464  }
465  else if(iter->isFilterDone())
466  {
467  x = iter->getFiltered().get_x();
468  y = iter->getFiltered().get_y();
469  }
470  break;
471  }
472  }
473 
474  return sqrt(x*x + y*y);
475 
476 }
477 
479 {
480  double axz_st1 = getXZSlopeInStation(1);
481  double axz_st2 = getXZSlopeInStation(2);
482 
483  return axz_st1 < axz_st2 ? -1 : 1;
484 }
485 
486 double KalmanTrack::getMomentumUpstream(double& px, double& py, double& pz)
487 {
488  if(_nodes.front().isSmoothDone())
489  {
490  return _nodes.front().getSmoothed().get_mom(px, py, pz);
491  }
492  else if(_nodes.front().isFilterDone())
493  {
494  return _nodes.front().getFiltered().get_mom(px, py, pz);
495  }
496  else
497  {
498  return _nodes.front().getPredicted().get_mom(px, py, pz);
499  }
500 }
501 
503 {
504  int detectorID_begin = stationID*6 - 5;
505  int detectorID_end = stationID*6;
506 
507  int nHits = 0;
508  for(std::list<Node>::iterator iter = _nodes.begin(); iter != _nodes.end(); ++iter)
509  {
510  int detectorID = iter->getHit().detectorID;
511  if(detectorID >= detectorID_begin && detectorID <= detectorID_end)
512  {
513  nHits++;
514  }
515  }
516 
517  return nHits;
518 }
519 
521 {
522  double nHits = _hit_index.size();
523 
524  _chisq = 0.;
525  for(std::list<Node>::iterator node = _nodes.begin(); node != _nodes.end(); ++node)
526  {
527  _chisq += node->getChisq();
528  }
529 
530  _quality = nHits - 0.4*_chisq;
531 }
532 
533 bool KalmanTrack::operator<(const KalmanTrack& elem) const
534 {
535  return _quality > elem._quality;
536 }
537 
538 bool KalmanTrack::operator==(const KalmanTrack& elem) const
539 {
540  if(_hit_index.size() != elem._hit_index.size()) return false;
541  if(fabs(_quality - elem._quality) > 1E-6) return false;
542 
543  return true;
544 }
545 
546 bool KalmanTrack::similarity(const KalmanTrack& elem) const
547 {
548  std::list<int> _hit_index1, _hit_index2;
549 
550  _hit_index1.clear();
551  for(std::list<int>::const_iterator iter = _hit_index.begin(); iter != _hit_index.end(); ++iter)
552  {
553  _hit_index1.push_back(abs(*iter));
554  }
555  _hit_index1.sort();
556 
557  _hit_index2.clear();
558  for(std::list<int>::const_iterator iter = elem._hit_index.begin(); iter != elem._hit_index.end(); ++iter)
559  {
560  _hit_index2.push_back(abs(*iter));
561  }
562  _hit_index2.sort();
563 
564  std::list<int> commonHits;
565  commonHits.clear();
566  set_intersection(_hit_index1.begin(), _hit_index1.end(), _hit_index2.begin(), _hit_index2.end(), back_inserter(commonHits));
567 
568  double nHits_original = double(_hit_index1.size());
569  double nHits_common = double(commonHits.size());
570 
571  if(nHits_common/nHits_original > 0.2) return true;
572  return false;
573 }
574 
575 
577 {
578  _hit_index.push_front(_hit.index);
579 
580  Node _node(_hit);
582 
583  _node.getPredicted() = _node_next.getPredicted();
584  _node.setPredictionDone();
585  if(_kmfit->filter(_node))
586  {
587  _nodes.push_front(_node);
588  update();
589 
590  _trkpar_curr = _node.getFiltered();
591 
592  return true;
593  }
594  else
595  {
596  return false;
597  }
598 }
599 
600 int KalmanTrack::getAlignment(int level, int *detectorID, double *res, double *R, double *T)
601 {
602  if(level != 1 && level != 2 && level != 3)
603  {
604  std::cerr << "Wrong output level selection! " << std::endl;
605  return 0;
606  }
607 
608  int nHits = 0;
609  double x, y;
610 
611  GeomSvc *p_geomSvc = GeomSvc::instance();
612  for(std::list<Node>::iterator iter = _nodes.begin(); iter != _nodes.end(); ++iter)
613  {
614  if(level == 3)
615  {
616  x = iter->getSmoothed().get_x();
617  y = iter->getSmoothed().get_y();
618  res[nHits] = iter->getSmoothedResidual()[0][0];
619  }
620  else if(level == 2)
621  {
622  x = iter->getFiltered().get_x();
623  y = iter->getFiltered().get_y();
624  res[nHits] = iter->getFilteredResidual()[0][0];
625  }
626  else if(level == 1)
627  {
628  x = iter->getPredicted().get_x();
629  y = iter->getPredicted().get_y();
630  res[nHits] = iter->getPredictedResidual()[0][0];
631  }
632 
633  detectorID[nHits] = iter->getHit().detectorID;
634  R[nHits] = x*p_geomSvc->getCostheta(detectorID[nHits]) + y*p_geomSvc->getSintheta(detectorID[nHits]) - iter->getHit().pos;
635  T[nHits] = iter->getHit().tdcTime;
636 
637  nHits++;
638  }
639 
640  return nHits;
641 }
642 
643 int KalmanTrack::getPositions(int level, double *x, double *y, double *z)
644 {
645  if(level != 1 && level != 2 && level != 3)
646  {
647  std::cerr << "Wrong output level selection! " << std::endl;
648  return 0;
649  }
650 
651  int nHits = 0;
652  for(std::list<Node>::iterator iter = _nodes.begin(); iter != _nodes.end(); ++iter)
653  {
654  z[nHits] = iter->getZ();
655  if(level == 3)
656  {
657  x[nHits] = iter->getSmoothed().get_x();
658  y[nHits] = iter->getSmoothed().get_y();
659  }
660  else if(level == 2)
661  {
662  x[nHits] = iter->getFiltered().get_x();
663  y[nHits] = iter->getFiltered().get_y();
664  }
665  else if(level == 1)
666  {
667  x[nHits] = iter->getPredicted().get_x();
668  y[nHits] = iter->getPredicted().get_y();
669  }
670 
671  nHits++;
672  }
673 
674  return nHits;
675 }
676 
677 int KalmanTrack::getMomentums(int level, double *px, double *py, double *pz)
678 {
679  if(level != 1 && level != 2 && level != 3)
680  {
681  std::cerr << "Wrong output level selection! " << std::endl;
682  return 0;
683  }
684 
685  int nHits = 0;
686  for(std::list<Node>::iterator iter = _nodes.begin(); iter != _nodes.end(); ++iter)
687  {
688  double m_px, m_py, m_pz;
689  if(level == 3)
690  {
691  iter->getSmoothed().get_mom(m_px, m_py, m_pz);
692  }
693  else if(level == 2)
694  {
695  iter->getFiltered().get_mom(m_px, m_py, m_pz);
696  }
697  else
698  {
699  iter->getPredicted().get_mom(m_px, m_py, m_pz);
700  }
701 
702  px[nHits] = m_px;
703  py[nHits] = m_py;
704  pz[nHits] = m_pz;
705 
706  nHits++;
707  }
708 
709  return nHits;
710 }
711 
713 {
714  int nHits = 0;
715  for(std::list<int>::iterator iter = _hit_index.begin(); iter != _hit_index.end(); ++iter)
716  {
717  index[nHits] = *iter;
718  nHits++;
719  }
720 
721  return nHits;
722 }
723 
725 {
726  std::vector<int> detectorIDs_all;
727  for(int i = 1; i <= 12; ++i) detectorIDs_all.push_back(i);
728  if(_nodes.back().getHit().detectorID < 19)
729  {
730  for(int i = 13; i <= 18; ++i) detectorIDs_all.push_back(i);
731  }
732  else
733  {
734  for(int i = 19; i <= 24; ++i) detectorIDs_all.push_back(i);
735  }
736 
737  std::vector<int> detectorIDs_now;
738  detectorIDs_now.clear();
739  for(std::list<Node>::iterator iter = _nodes.begin(); iter != _nodes.end(); ++iter)
740  {
741  detectorIDs_now.push_back(iter->getHit().detectorID);
742  }
743  std::sort(detectorIDs_now.begin(), detectorIDs_now.end());
744 
745  std::vector<int> detectorIDs_miss(18);
746  std::vector<int>::iterator iter = std::set_difference(detectorIDs_all.begin(), detectorIDs_all.end(), detectorIDs_now.begin(), detectorIDs_now.end(), detectorIDs_miss.begin());
747  detectorIDs_miss.resize(iter - detectorIDs_miss.begin());
748 
749  return detectorIDs_miss;
750 }
751 
752 void KalmanTrack::getSagittaInSuperDetector(int detectorID, double& pos_exp, double& window)
753 {
754  if(detectorID > 3 || detectorID < 1) return;
755  GeomSvc *p_geomSvc = GeomSvc::instance();
756 
758  int detectorID_st2[3] = {12, 10, 8};
759  double ratio[3] = {1.9, 1.80, 1.7};
760  double sigma[3] = {0.2, 0.2, 0.2};
761 
762  double x_st3, y_st3, z_st3;
763  z_st3 = _nodes.back().getZ();
764  if(_nodes.back().isSmoothDone())
765  {
766  x_st3 = _nodes.back().getSmoothed().get_x();
767  y_st3 = _nodes.back().getSmoothed().get_y();
768  }
769  else if(_nodes.back().isFilterDone())
770  {
771  x_st3 = _nodes.back().getFiltered().get_x();
772  y_st3 = _nodes.back().getFiltered().get_y();
773  }
774  else
775  {
776  x_st3 = _nodes.back().getPredicted().get_x();
777  y_st3 = _nodes.back().getPredicted().get_y();
778  }
779  double pos_st3 = x_st3*p_geomSvc->getCostheta(_nodes.back().getHit().detectorID) + y_st3*p_geomSvc->getSintheta(_nodes.back().getHit().detectorID);
780 
781  double x_st2, y_st2, z_st2;
782  z_st2 = p_geomSvc->getPlanePosition(detectorID_st2[detectorID-1]);
783  getExpPositionFast(z_st2, x_st2, y_st2);
784  double pos_st2 = x_st2*p_geomSvc->getCostheta(detectorID_st2[detectorID-1]) + y_st2*p_geomSvc->getSintheta(detectorID_st2[detectorID-1]);
785  double sagitta_st2 = pos_st2 - pos_st3/z_st3*z_st2;
786 
787  double z_st1 = p_geomSvc->getPlanePosition(2*detectorID);
788  pos_exp = sagitta_st2*ratio[detectorID-1] + pos_st3/z_st3*z_st1;
789  window = fabs(6.*sagitta_st2*sigma[detectorID-1]);
790 }
791 
793 {
794  double x[20], y[20], z[20];
795  getPositions(3, x, y, z);
796 
797  TGraph gr(getNHits(), z, x);
798  return gr;
799 }
800 
802 {
803  SRecTrack _strack;
804 
805  _strack.setChisq(_chisq);
806  for(std::list<Node>::iterator iter = _nodes.begin(); iter != _nodes.end(); ++iter)
807  {
808  _strack.insertHitIndex(iter->getHit().index);
809  _strack.insertStateVector(iter->getSmoothed()._state_kf);
810  _strack.insertCovariance(iter->getSmoothed()._covar_kf);
811  _strack.insertZ(iter->getZ());
812  _strack.insertChisq(iter->getChisq());
813  }
814 
815  _strack.swimToVertex();
816  _strack.setKalmanStatus(1);
817  return _strack;
818 }
819 
821 {
822  std::cout << "=============== Kalman finder candidate track ==================" << std::endl;
823  std::cout << "This candidate has " << _hit_index.size() << " hits!" << std::endl;
824 
825  for(std::list<int>::iterator iter = _hit_index.begin(); iter != _hit_index.end(); ++iter)
826  {
827  std::cout << *iter << " : ";
828  }
829  std::cout << std::endl;
830 
831  for(std::list<Node>::iterator iter = _nodes.begin(); iter != _nodes.end(); ++iter)
832  {
833  std::cout << iter->getHit().detectorID << " : ";
834  }
835  std::cout << std::endl;
836 
837  std::cout << "Most upstream momentum is: " << 1./fabs(_trkpar_curr._state_kf[0][0]) << std::endl;
838  std::cout << "Most upstream position is: " << _trkpar_curr.get_z() << std::endl;
839  std::cout << "Current slope: X-Z = " << _trkpar_curr._state_kf[1][0] << ", Y-Z = " << _trkpar_curr._state_kf[2][0] << std::endl;
840  std::cout << "Current position: X = " << _trkpar_curr._state_kf[3][0] << ", Y = " << _trkpar_curr._state_kf[4][0] << std::endl;
841  std::cout << "Quality is: " << _quality << std::endl;
842  std::cout << "Chisq/d.o.f = " << _chisq/_hit_index.size() << std::endl;
843  if(!_hit_index.empty()) std::cout << "Charge = " << getCharge() << std::endl;
844  if(!_hit_index.empty()) std::cout << "Assigned Charge = " << getAssignedCharge() << std::endl;
845  if(!_hit_index.empty()) std::cout << "Kick Charge = " << getKickCharge() << std::endl;
846 
847  //std::cout << "Using this seed as start: " << std::endl;
848  //_seed.print();
849 }
850 
852 {
853  std::cout << "The content of all Nodes of this track ... " << std::endl;
854  for(std::list<Node>::reverse_iterator node = _nodes.rbegin(); node != _nodes.rend(); ++node)
855  {
856  node->print(true);
857  }
858 }
#define LogInfo(message)
Definition: DbSvc.cc:15
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
double getDriftDistance(int detectorID, double tdcTime)
Definition: GeomSvc.cxx:834
double getPlanePosition(int detectorID) const
Definition: GeomSvc.h:235
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
void getMeasurement(int detectorID, int elementID, double &measurement, double &dmeasurement)
Convert the detectorID and elementID to the actual hit position.
Definition: GeomSvc.cxx:651
double getCostheta(int detectorID) const
Definition: GeomSvc.h:239
double getPlaneSpacing(int detectorID) const
Definition: GeomSvc.h:236
double getSintheta(int detectorID) const
Definition: GeomSvc.h:240
Definition of hit structure.
Definition: SRawEvent.h:35
Int_t getSign()
Definition: SRawEvent.h:61
Int_t index
Definition: SRawEvent.h:77
Float_t pos
Definition: SRawEvent.h:82
Float_t tdcTime
Definition: SRawEvent.h:80
Short_t elementID
Definition: SRawEvent.h:79
Short_t detectorID
Definition: SRawEvent.h:78
Float_t driftDistance
Definition: SRawEvent.h:81
bool filter(Node &_node)
static KalmanFilter * instance()
singlton instance
void setCurrTrkpar(Node &_node)
set the current track parameter using the current node
Definition: KalmanFilter.h:45
bool fit_node(Node &_node)
Fit one node.
bool predict(Node &_node)
Kalman filter steps.
int getAlignment(int level, int *detectorID, double *res, double *R, double *T)
double getMomentumVertex(double z, double &px, double &py, double &pz)
Get the rough vertex momentum.
double getExpPosition()
Get the expected position.
int getHitsIndex(int *index)
void updateMomentum()
Update the momentum.
bool operator<(const KalmanTrack &elem) const
Overriden operators.
int getCharge()
Definition: KalmanTrack.h:88
SRecTrack getSRecTrack()
Output to SRecTrack.
bool similarity(const KalmanTrack &elem) const
std::vector< int > getMissedDetectorIDs()
int getPositions(int level, double *x, double *y, double *z)
bool addHit(Hit _hit)
void setTracklet(Tracklet &tracklet, bool wildseedcov=true)
Definition: KalmanTrack.cxx:62
int getNHitsInStation(int stationID)
bool isValid()
Self check to see if it is null.
Definition: KalmanTrack.cxx:96
void print()
Debugging print.
double getExpLocalSlop()
Get the expected slope.
void printNodes()
int getAssignedCharge()
Definition: KalmanTrack.h:89
bool propagateTo(int detectorID)
Propagate the track to a designated position.
Node * getNodeDownstream()
Get Nodes in both upstream and downstream which are closest to KMag.
int getMomentums(int level, double *px, double *py, double *pz)
void update()
Update the track status.
double getMomentumUpstream()
Definition: KalmanTrack.h:99
double getExpPosError()
double getXZSlopeInStation(int stationID)
int getKickCharge()
Node * getNodeUpstream()
void getSagittaInSuperDetector(int detectorID, double &pos_exp, double &window)
void getExpPositionFast(double z, double &x, double &y, Node *_node=nullptr)
void getExpPosErrorFast(double z, double &dx, double &dy, Node *_node=nullptr)
double getMomentumInStation(int stationID)
Node * getNearestNodePtr(double z)
TGraph getXZProjection()
double getPositionInStation(int stationID, double &x, double &y, double &z)
bool operator==(const KalmanTrack &elem) const
int getNHits()
Definition: KalmanTrack.h:87
void flipCharge()
Flip the sign of this track.
double getExpLcSlopErr()
KalmanTrack()
Constructor, default one is for list::resize()
Definition: KalmanTrack.cxx:18
void setPredictionDone(bool flag=true)
Definition: KalmanUtil.h:141
bool isFilterDone()
Definition: KalmanUtil.h:132
TrkPar & getSmoothed()
Definition: KalmanUtil.h:108
void setZ(double z)
Definition: KalmanUtil.h:137
double getChisq()
Definition: KalmanUtil.h:127
TrkPar & getPredicted()
Gets.
Definition: KalmanUtil.h:106
void setFilterDone(bool flag=true)
Definition: KalmanUtil.h:142
TMatrixD & getMeasurement()
Definition: KalmanUtil.h:110
bool isSmoothDone()
Definition: KalmanUtil.h:133
void setChisq(double chisq)
Definition: KalmanUtil.h:145
TMatrixD & getProjector()
Definition: KalmanUtil.h:122
TrkPar & getFiltered()
Definition: KalmanUtil.h:107
TMatrixD & getMeasurementCov()
Definition: KalmanUtil.h:111
void setSmoothDone(bool flag=true)
Definition: KalmanUtil.h:143
Hit & getHit()
Definition: KalmanUtil.h:129
static TMatrixD getABCt(const TMatrixD &A, const TMatrixD &B, const TMatrixD &C)
Definition: KalmanUtil.cxx:125
Hit getHit(Int_t index)
Definition: SRawEvent.h:144
Int_t getLocalID(Int_t hitID)
Definition: SRecEvent.h:447
TMatrixD getCovariance(Int_t i)
Definition: SRecEvent.h:110
Double_t getChisq() const
Definition: SRecEvent.h:104
Int_t getNHits() const
Definition: SRecEvent.h:102
Double_t getChisqAtNode(Int_t i)
Definition: SRecEvent.h:112
void insertChisq(Double_t chisq)
Definition: SRecEvent.h:159
void setChisq(Double_t chisq)
Sets.
Definition: SRecEvent.h:154
void insertCovariance(TMatrixD covar)
Definition: SRecEvent.h:157
TMatrixD getStateVector(Int_t i)
Definition: SRecEvent.h:109
Double_t getZ(Int_t i)
Definition: SRecEvent.h:111
Int_t getHitIndex(Int_t i)
Definition: SRecEvent.h:108
void insertZ(Double_t z)
Definition: SRecEvent.h:158
void swimToVertex(TVector3 *pos=nullptr, TVector3 *mom=nullptr, bool hyptest=true)
Simple swim to vertex.
Definition: SRecEvent.cxx:402
void insertHitIndex(Int_t index)
Definition: SRecEvent.h:155
void setKalmanStatus(Int_t status)
Definition: SRecEvent.h:148
void insertStateVector(TMatrixD state)
Definition: SRecEvent.h:156
double invP
Definition: FastTracklet.h:239
double getExpPositionY(double z) const
std::list< SignedHit > hits
Definition: FastTracklet.h:228
double ty
Definition: FastTracklet.h:236
double tx
Definition: FastTracklet.h:235
double getExpPositionX(double z) const
int getCharge() const
Return the charge (+1 or -1) of this tracklet.
double get_y()
Definition: KalmanUtil.h:59
double get_dydz()
Definition: KalmanUtil.h:62
TMatrixD _state_kf
State vectors and its covariance.
Definition: KalmanUtil.h:85
void flip_charge()
Definition: KalmanUtil.cxx:158
double get_z()
Definition: KalmanUtil.h:60
TMatrixD _covar_kf
Definition: KalmanUtil.h:86
double get_dxdz()
Definition: KalmanUtil.h:61
double _z
Definition: KalmanUtil.h:87
double get_mom(double &px, double &py, double &pz)
Definition: KalmanUtil.cxx:169
double get_x()
Definition: KalmanUtil.h:58