#ifndef RIEMANN_TRACK_FINDER_TRACK_H #define RIEMANN_TRACK_FINDER_TRACK_H #include #include "hit.h" #include "util.h" using namespace std; /** * The informatin associated with a RiemannTrackFinder track candidate. */ struct Track{ vector hits; vector num_hits_from_true_track; float r, x0, y0, dip; }; // Track #endif