Class Reference for E1039 Core & Analysis Software
KalmanTrack.h
Go to the documentation of this file.
1 /*
2 KalmanTrack.h
3 
4 Track used in all Kalman filter based process, i.e. KalmanFinder and KalmanFitter
5 
6 Author: Kun Liu, liuk@fnal.gov
7 Created: 10-14-2012
8 */
9 
10 #ifndef _KALMANTRACK_H
11 #define _KALMANTRACK_H
12 
13 #include <GlobalConsts.h>
14 
15 #include <list>
16 #include <vector>
17 #include <algorithm>
18 
19 #include <TGraph.h>
20 
21 #include "KalmanUtil.h"
22 #include "KalmanFilter.h"
23 #include "SRecEvent.h"
24 #include "SRawEvent.h"
25 #include "FastTracklet.h"
26 
28 {
29 public:
31  KalmanTrack();
32  //KalmanTrack(Tracklet& tracklet);
33  KalmanTrack(SRecTrack& _trk, SRawEvent *_rawevt, SRecEvent *_recevt);
34 
35  //Convert from tracklet to KalmanTrack
36  void setTracklet(Tracklet& tracklet, bool wildseedcov = true);
37 
39  void flipCharge();
40 
42  bool isValid();
43 
45  bool propagateTo(int detectorID);
46  int getCurrentDetectorID() { return _node_next.getHit().detectorID; }
47 
49  double getExpPosition();
50  double getExpPosError();
51  double getExpPositionX() { return _node_next.getPredicted()._state_kf[3][0]; }
52  double getExpPositionY() { return _node_next.getPredicted()._state_kf[4][0]; }
53  double getExpPosErrorX() { return sqrt(_node_next.getPredicted()._covar_kf[3][0]); }
54  double getExpPosErrorY() { return sqrt(_node_next.getPredicted()._covar_kf[4][0]); }
55 
56  Node* getNearestNodePtr(double z);
57  void getExpPositionFast(double z, double& x, double& y, Node *_node = nullptr);
58  void getExpPosErrorFast(double z, double& dx, double& dy, Node *_node = nullptr);
59 
61  double getExpLocalSlop();
62  double getExpLcSlopErr();
65 
68  bool addHit(Hit _hit);
69 
71  void update();
72 
74  void updateMomentum();
75 
77  void setCurrTrkpar(TrkPar& _trkpar) { _trkpar_curr = _trkpar; }
78 
80  double getMomentumVertex(double z, double& px, double& py, double& pz);
81 
83  std::list<int>& getHitIndexList() { return _hit_index; }
84  std::list<Node>& getNodeList() { return _nodes; }
85  std::vector<int> getMissedDetectorIDs();
86 
87  int getNHits() { return _hit_index.size(); }
88  int getCharge() { return _nodes.front().getFiltered().get_charge(); }
89  int getAssignedCharge() { return _nodes.back().getPredicted().get_charge(); }
90  int getKickCharge(); //Get the charge decided by the sign of Kick
91  double getChisq() { return _chisq; }
92  double getQuality() { return _quality; }
93  double getReducedChisq() { return _chisq/_hit_index.size(); }
94  double getChisqVertex() { return _chisq_vertex; }
95 
96  double getXZSlopeInStation(int stationID);
97  double getPositionInStation(int stationID, double& x, double& y, double& z);
98  double getMomentumInStation(int stationID);
99  double getMomentumUpstream() { return 1./fabs(_nodes.front().getFiltered()._state_kf[0][0]); }
100  double getMomentumUpstream(double& px, double& py, double& pz);
101  int getNHitsInStation(int stationID);
102 
103  void getSagittaInSuperDetector(int detectorID, double& pos_exp, double& window);
104 
108 
110  bool operator<(const KalmanTrack& elem) const;
111  bool operator==(const KalmanTrack& elem) const;
112  bool similarity(const KalmanTrack& elem) const;
113 
115  void print();
116  void printNodes();
117 
119  int getNodeChisq(double *chisqs);
120  int getAlignment(int level, int *detectorID, double* res, double* R, double* T);
121  int getPositions(int level, double* x, double* y, double* z);
122  int getMomentums(int level, double* px, double* py, double* pz);
123  int getHitsIndex(int* index);
124  TGraph getXZProjection();
125 
128 
129 private:
130  std::list<int> _hit_index;
131  std::list<Node> _nodes;
132 
133  double _chisq;
134  double _quality;
135  double _chisq_vertex;
136 
137  Node _node_next;
138  TrkPar _trkpar_curr;
139 };
140 
141 #endif
Definition of hit structure.
Definition: SRawEvent.h:35
Short_t detectorID
Definition: SRawEvent.h:78
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
double getExpPosErrorX()
Definition: KalmanTrack.h:53
int getCurrentDetectorID()
Definition: KalmanTrack.h:46
std::vector< int > getMissedDetectorIDs()
std::list< Node > & getNodeList()
Definition: KalmanTrack.h:84
int getPositions(int level, double *x, double *y, double *z)
double getExpPositionY()
Definition: KalmanTrack.h:52
bool addHit(Hit _hit)
void setTracklet(Tracklet &tracklet, bool wildseedcov=true)
Definition: KalmanTrack.cxx:62
int getNHitsInStation(int stationID)
double getExpPositionX()
Definition: KalmanTrack.h:51
double getExpLocalIntersection()
bool isValid()
Self check to see if it is null.
Definition: KalmanTrack.cxx:96
void print()
Debugging print.
void setCurrTrkpar(TrkPar &_trkpar)
set the current track parameter
Definition: KalmanTrack.h:77
double getQuality()
Definition: KalmanTrack.h:92
std::list< int > & getHitIndexList()
Get the list of hits associated.
Definition: KalmanTrack.h:83
int getNodeChisq(double *chisqs)
Quality monitoring methods.
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)
double getReducedChisq()
Definition: KalmanTrack.h:93
void update()
Update the track status.
double getMomentumUpstream()
Definition: KalmanTrack.h:99
double getExpPosError()
double getXZSlopeInStation(int stationID)
int getKickCharge()
double getExpLcIntersectionErr()
Node * getNodeUpstream()
void getSagittaInSuperDetector(int detectorID, double &pos_exp, double &window)
double getExpPosErrorY()
Definition: KalmanTrack.h:54
double getChisqVertex()
Definition: KalmanTrack.h:94
void getExpPositionFast(double z, double &x, double &y, Node *_node=nullptr)
void getExpPosErrorFast(double z, double &dx, double &dy, Node *_node=nullptr)
double getChisq()
Definition: KalmanTrack.h:91
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
TrkPar & getPredicted()
Gets.
Definition: KalmanUtil.h:106
Hit & getHit()
Definition: KalmanUtil.h:129
TMatrixD _state_kf
State vectors and its covariance.
Definition: KalmanUtil.h:85
TMatrixD _covar_kf
Definition: KalmanUtil.h:86