#ifndef RIEMANN_DATA_H_ #define RIEMANN_DATA_H_ #include using namespace std; /** * The information associated with a single hit point. */ struct Hit { Hit(int id, int track_id, int layer, float x, float y, float z) : id(id), track_id(track_id), layer(layer), x(x), y(y), z(z){} int id, track_id, layer; float x, y, z; }; #endif