//* $Id: *// // ------------------------------------------------------------------------- // ----- CbmMvdStripsDigiMatch header file ----- // ----- Created 31/08/06 by V. Friese ----- // ------------------------------------------------------------------------- /** CbmMvdStripsDigiMatch.h **@author V.Friese **@since 31.08.06 **@version 1.0 ** ** Data class for matching CbmMvdStripsDigi with CbmMvdStripsPoint. Up to three ** matches are possible. ** The indizes of CbmMvdStripsDigi and CbmMvdStripsDigiMatch correspond in their ** respective arrays. ** The class holds the indizes of all MvdStripsPoints corresponding to ** the MvdStripsDigi. **/ #ifndef CBMMVDSTRIPSDIGIMATCH_H #define CBMMVDSTRIPSDIGIMATCH_H 1 #include "TObject.h" class CbmMvdStripsDigiMatch : public TObject { public: /** Default constructor **/ CbmMvdStripsDigiMatch(); /** Standard constructor **/ CbmMvdStripsDigiMatch(Int_t iPoint); /** Destructor **/ virtual ~CbmMvdStripsDigiMatch(); /** Add a MvdStripsPoint index *@value Number of indizes present **/ Int_t AddPoint(Int_t iPoint); /** Accessor to MvdStripsPoint indizes **/ Int_t GetRefIndex(Int_t i = 0) const; private: Int_t fRefIndex[3]; ClassDef(CbmMvdStripsDigiMatch,1); }; #endif