![]() |
Belle II Software
release-05-02-19
|
The DATCONTrackCand represents the candidates of tracks found by the DATCON algoritms for u-side and v-side SVD hits independently. More...
#include <DATCONTrackCand.h>
Public Member Functions | |
DATCONTrackCand (std::vector< unsigned int > &list, TVector2 coord) | |
Constructor for hough candidates. | |
std::vector< unsigned int > | getIdList () |
Get Index list. | |
TVector2 | getCoord () |
Get Index list. | |
unsigned int | getHash () const |
Get Hash of hit list. | |
unsigned int | getHitSize () const |
Get Size of hit list. | |
Private Attributes | |
std::vector< unsigned int > | hitList |
List of IDs of hits that belong to this DATCONTrackCand. | |
TVector2 | coordinate |
Coordinate of this candidate. | |
unsigned int | hash |
Hash for id list. | |
unsigned int | hitSize |
Size of this DATCONTrackCand. | |
The DATCONTrackCand represents the candidates of tracks found by the DATCON algoritms for u-side and v-side SVD hits independently.
These track candidates are later combined into 3D tracks. A track candidate consists of a list of hits (representing the associated space points), hitList, and a TVector2 containing the coordinates of intersections in the Hough Space which give either (phi, omega = 1/R) or (theta, Zzero). Internal variables are a hash as sum of the entries of hitList, and the number of hits in hitList, hitSize.
Definition at line 38 of file DATCONTrackCand.h.