#ifndef _L1HitPoint_h_ #define _L1HitPoint_h_ /// contain strips positions and coordinates of hit struct L1HitPoint{ fscal x, y, v; // x, v - front and back strips; x, y - coordinates of hits unsigned short int n; // number of event L1HitPoint(fscal x_, fscal y_, fscal v_, unsigned short int n_): x(x_), y(y_), v(v_), n(n_){}; }; #endif