/** CbmRichDigi.h **@author V.Friese **@since 15.09.09 **@version 1.0 ** ** Base class for digital information from RICH ** Data level: RAW ** ** No segmentation in fDetectorId implemented yet. **/ #ifndef CBMRICHDIGI_H #define CBMRICHDIGI_H 1 #include "CbmDigi.h" class CbmRichDigi : public CbmDigi { public: /** Default constructor **/ CbmRichDigi(); /** Standard constructor **/ CbmRichDigi(Int_t iChannel, Int_t iAdc, Double_t time); /** Destructor (no action) **/ ~CbmRichDigi() { } /** Accessors **/ Int_t GetChannelNr() const { return fChannelNr; } Int_t GetAdc() const { return fAdc; } Double_t GetTime() const { return fTime; } private: Int_t fAdc; /** Charge in ADC units **/ Double_t fTime; /** Time stamp [s] **/ ClassDef(CbmRichDigi, 1); }; #endif