// -------------------------------------------------------------------- // ----- R3BLandDigiMatch ----- // ----- Created 17-03-2014 by D. Kresan ----- // -------------------------------------------------------------------- #ifndef R3BLANDDIGIMATCH_H #define R3BLANDDIGIMATCH_H #include "TObject.h" class R3BLandDigiMatch : public TObject { public: R3BLandDigiMatch(); virtual ~R3BLandDigiMatch(); Int_t AddPoint(Int_t iPoint); Int_t GetRefIndex(Int_t i = 0) const; private: Int_t fRefIndex[10]; public: ClassDef(R3BLandDigiMatch, 1) }; #endif