#include #include class SiHit : public TObject { public: SiHit(); SiHit(UShort_t box, UShort_t channel, Int_t adc, UShort_t numFrames); virtual ~SiHit(); public: UShort_t fBox; // Box number (0..3) UShort_t fChannel; // Channel of strip sensor (0..767) Int_t fAdc; // raw ADC value UShort_t fNumFrames; // number of frames with signal above threshold ClassDef(SiHit,1); };