11 #include <phfield/PHField.h>
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);;
45 for(std::list<Node>::iterator iter = _nodes.begin(); iter != _nodes.end(); ++iter)
64 double _chisq_curr = 1E6;
65 for(; iIter < _max_iteration; iIter++)
70 for(std::list<Node>::reverse_iterator node = _nodes.rbegin(); node != _nodes.rend(); ++node)
76 _chisq += node->getChisq();
80 LogInfo(
"Failed in prediction and filtering. ");
85 std::list<Node>::iterator node = _nodes.begin();
86 std::list<Node>::iterator last_smoothed = _nodes.begin();
89 for(; node != _nodes.end(); ++node)
91 if(!_kmfit->
smooth(*node, *last_smoothed))
93 LogInfo(
"Failed in smoothing.");
109 if(_chisq_curr < 0.)
return -1;
110 if(fabs(_chisq_curr - _chisq) < _tolerance)
break;
111 if(_chisq - _chisq_curr > 5.)
break;
113 _chisq_curr = _chisq;
125 _track.
getNodeList().assign(_nodes.begin(), _nodes.end());
137 return _nodes.size();
145 for(std::list<Node>::iterator node = _nodes.begin(); node != _nodes.end(); ++node)
148 if(node->isSmoothDone())
150 x = node->getSmoothed().get_x();
151 y = node->getSmoothed().get_y();
153 else if(node->isFilterDone())
155 x = node->getFiltered().get_x();
156 y = node->getFiltered().get_y();
160 x = node->getPredicted().get_x();
161 y = node->getPredicted().get_y();
164 int index = node->getHit().detectorID - 1;
165 node->setZ(rM_20[index]*x + rM_21[index]*y + rM_22[index]*z_planes[index]);
196 LogInfo(
"In smoother init: Filter not done!");
202 LogInfo(
"In smoother init: Smooth already done!");
User interface class about the geometry of detector planes.
double getRotationInZ(int detectorID) const
static GeomSvc * instance()
singlton instance
double getPlaneCenterZ(int detectorID) const
double getRotationInY(int detectorID) const
double getRotationInX(int detectorID) const
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
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()
void setCurrTrkpar(TrkPar &_trkpar)
set the current track parameter
void update()
Update the track status.
void setSmoothDone(bool flag=true)
transient DST object for field storage and access