1 #ifndef _KALMANFITTER_H
2 #define _KALMANFITTER_H
31 void setControlParameter(
int nMaxIteration,
double tolerance) { _max_iteration = nMaxIteration; _tolerance = tolerance; }
62 double getMomentumInitial(
double& px,
double& py,
double& pz) {
return _nodes.front().getSmoothed().get_mom(px, py, pz); }
63 double getMomentumFinal(
double& px,
double& py,
double& pz) {
return _nodes.back().getSmoothed().get_mom(px, py, pz); }
65 double getPositionInitial(
double& x,
double& y,
double& z) {
return _nodes.front().getSmoothed().get_pos(x, y, z); }
66 double getPositionFinal(
double& x,
double& y,
double& z) {
return _nodes.back().getSmoothed().get_pos(x, y, z); }
77 std::list<Node> _nodes;
int processOneTrack(KalmanTrack &_track)
void setStartingParameter(KalmanTrack &_track)
Set the starting parameters.
std::list< Node > & getNodeList()
return the node list
bool initSmoother(Node &_node)
Initialize the smoother.
int initNodeList(KalmanTrack &_track)
Initialize the node list.
double getPositionInitial(double &x, double &y, double &z)
void updateTrack(KalmanTrack &_track)
double getPositionFinal(double &x, double &y, double &z)
double getMomentumFinal(double &px, double &py, double &pz)
double getMomentumInitial(double &px, double &py, double &pz)
Get the final results – temporary interfaces, just for debugging purposes.
const TrkPar & getTrkParInitial()
const TrkPar & getTrkParFinal()
KalmanFitter(const PHField *field, const TGeoManager *geom)
void setControlParameter(int nMaxIteration, double tolerance)
Set the convergence control parameters.
void updateAlignment()
Update the actual z position of each node according to current fit results.
void init()
Initialize the kalman filter.
double findVertex()
Vertex finder.
transient DST object for field storage and access