#ifndef _L1StsHit_h_ #define _L1StsHit_h_ struct L1StsHit { unsigned /*short*/ int f, b; // front and back strip indices unsigned short int n; // number of event L1StsHit(){ n = 0;} L1StsHit(L1StsHit &h, unsigned short int _n, /*short*/ int sh, /*short*/ int shB){ f = h.f + sh; b = h.b + shB; n = _n;} }; #endif