Class Reference for E1039 Core & Analysis Software
KalmanFitter.cxx
Go to the documentation of this file.
1 /*
2 kalmanFitter.cxx
3 
4 Implimentation of the class KalmanFitter, provides all core
5 functionalities of the track fitting procedure
6 
7 Author: Kun Liu, liuk@fnal.gov
8 Created: 10-18-2012
9 */
10 
11 #include <phfield/PHField.h>
12 
13 #include <iostream>
14 #include <algorithm>
15 #include <cmath>
16 
17 #include "geom_svc/GeomSvc.h"
18 #include "KalmanFitter.h"
19 
20 KalmanFitter::KalmanFitter(const PHField* field, const TGeoManager *geom)
21 {
22  _kmfit = KalmanFilter::instance();
23  _kmfit->initExtrapolator(field, geom);
24 
25  _max_iteration = 100;
26  _tolerance = 1E-3;
27 
28  GeomSvc* p_geomSvc = GeomSvc::instance();
29  for(int i = 1; i <= nChamberPlanes; ++i)
30  {
31  double rX = p_geomSvc->getRotationInX(i);
32  double rY = p_geomSvc->getRotationInY(i);
33  double rZ = p_geomSvc->getRotationInZ(i);
34 
35  z_planes[i-1] = p_geomSvc->getPlaneCenterZ(i);
36  rM_20[i-1] = cos(rX)*sin(rY)*cos(rZ) + sin(rX)*sin(rZ);
37  rM_21[i-1] = cos(rX)*sin(rY)*sin(rZ) - sin(rX)*cos(rZ);
38  rM_22[i-1] = cos(rY)*cos(rX);;
39  }
40 }
41 
43 {
44  _chisq = 0.;
45  for(std::list<Node>::iterator iter = _nodes.begin(); iter != _nodes.end(); ++iter)
46  {
47  iter->resetFlags();
48  }
49 }
50 
52 {
53  //LogInfo("Start processing this track..");
54  int iIter = 0;
55 
57  initNodeList(_track);
58 
60  setStartingParameter(_track);
62 
64  double _chisq_curr = 1E6;
65  for(; iIter < _max_iteration; iIter++)
66  {
67  //LogInfo("Iteration " << iIter << " starts: ");
68  init();
69 
70  for(std::list<Node>::reverse_iterator node = _nodes.rbegin(); node != _nodes.rend(); ++node)
71  {
72  //LogInfo(node->getZ());
73  if(_kmfit->fit_node(*node))
74  {
75  _kmfit->setCurrTrkpar(node->getFiltered());
76  _chisq += node->getChisq();
77  }
78  else
79  {
80  LogInfo("Failed in prediction and filtering. ");
81  return 0;
82  }
83  }
84 
85  std::list<Node>::iterator node = _nodes.begin();
86  std::list<Node>::iterator last_smoothed = _nodes.begin();
87  initSmoother(*node);
88  ++node;
89  for(; node != _nodes.end(); ++node)
90  {
91  if(!_kmfit->smooth(*node, *last_smoothed))
92  {
93  LogInfo("Failed in smoothing.");
94  return 0;
95  }
96  last_smoothed = node;
97  }
98 
99  /*
100  for(std::list<Node>::reverse_iterator node = _nodes.rbegin(); node != _nodes.rend(); ++node)
101  {
102  node->print(true);
103  }
104  */
105 
106  //update the chisq to see if it converges
107  //LogInfo("For this iteration, chisq = " << _chisq << ", chisq_curr = " << _chisq_curr);
108 
109  if(_chisq_curr < 0.) return -1;
110  if(fabs(_chisq_curr - _chisq) < _tolerance) break;
111  if(_chisq - _chisq_curr > 5.) break;
112 
113  _chisq_curr = _chisq;
114 
115  //update the starting parameters
116  setStartingParameter(*last_smoothed);
117  updateAlignment();
118  }
119 
120  return iIter + 1;
121 }
122 
124 {
125  _track.getNodeList().assign(_nodes.begin(), _nodes.end());
126  _track.setCurrTrkpar(_nodes.front().getFiltered());
127  _track.update();
128 }
129 
131 {
132  _nodes.clear();
133 
134  _nodes.assign(_track.getNodeList().begin(), _track.getNodeList().end());
135  _nodes.sort();
136 
137  return _nodes.size();
138 }
139 
141 {
142  //update the z positon of each node according to the current fit
143  // of (x, y)
144 
145  for(std::list<Node>::iterator node = _nodes.begin(); node != _nodes.end(); ++node)
146  {
147  double x, y;
148  if(node->isSmoothDone())
149  {
150  x = node->getSmoothed().get_x();
151  y = node->getSmoothed().get_y();
152  }
153  else if(node->isFilterDone())
154  {
155  x = node->getFiltered().get_x();
156  y = node->getFiltered().get_y();
157  }
158  else
159  {
160  x = node->getPredicted().get_x();
161  y = node->getPredicted().get_y();
162  }
163 
164  int index = node->getHit().detectorID - 1;
165  node->setZ(rM_20[index]*x + rM_21[index]*y + rM_22[index]*z_planes[index]);
166  }
167 }
168 
170 {
171  TrkPar _trkpar_curr;
172 
174  _trkpar_curr = _node.getSmoothed();
175 
176  /*
178  _trkpar_curr._state_kf = _node.getSmoothed()._state_kf;
179  _trkpar_curr._covar_kf = ;
180  _trkpar_curr._z = _node.getSmoothed()._z;
181  */
182 
183  _kmfit->setCurrTrkpar(_trkpar_curr);
184 }
185 
186 
188 {
189  _kmfit->setCurrTrkpar(_track.getNodeList().back().getPredicted());
190 }
191 
193 {
194  if(!_node.isFilterDone())
195  {
196  LogInfo("In smoother init: Filter not done!");
197  return false;
198  }
199 
200  if(_node.isSmoothDone())
201  {
202  LogInfo("In smoother init: Smooth already done!");
203  return false;
204  }
205 
206  _node.getSmoothed() = _node.getFiltered();
207  _node.setSmoothDone();
208 
209  return true;
210 }
#define LogInfo(message)
Definition: DbSvc.cc:15
#define nChamberPlanes
Definition: GlobalConsts.h:6
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
double getRotationInZ(int detectorID) const
Definition: GeomSvc.h:252
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
double getPlaneCenterZ(int detectorID) const
Definition: GeomSvc.h:249
double getRotationInY(int detectorID) const
Definition: GeomSvc.h:251
double getRotationInX(int detectorID) const
Definition: GeomSvc.h:250
bool initExtrapolator(const PHField *field, const TGeoManager *geom)
bool smooth(Node &_node, Node &_node_prev)
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.
int processOneTrack(KalmanTrack &_track)
void setStartingParameter(KalmanTrack &_track)
Set the starting parameters.
bool initSmoother(Node &_node)
Initialize the smoother.
int initNodeList(KalmanTrack &_track)
Initialize the node list.
void updateTrack(KalmanTrack &_track)
KalmanFitter(const PHField *field, const TGeoManager *geom)
void updateAlignment()
Update the actual z position of each node according to current fit results.
void init()
Initialize the kalman filter.
std::list< Node > & getNodeList()
Definition: KalmanTrack.h:84
void setCurrTrkpar(TrkPar &_trkpar)
set the current track parameter
Definition: KalmanTrack.h:77
void update()
Update the track status.
bool isFilterDone()
Definition: KalmanUtil.h:132
TrkPar & getSmoothed()
Definition: KalmanUtil.h:108
bool isSmoothDone()
Definition: KalmanUtil.h:133
TrkPar & getFiltered()
Definition: KalmanUtil.h:107
void setSmoothDone(bool flag=true)
Definition: KalmanUtil.h:143
transient DST object for field storage and access
Definition: PHField.h:14