]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFTRMTDCError.h
bugfix: corrected calculation of slice and partition from track point Id
[u/mrichter/AliRoot.git] / TOF / AliTOFTRMTDCError.h
index 788f372e3c2c23a6705cfbfa6770344911101d58..c41790b37d64f29085630affdac788cd106d5213 100644 (file)
 class AliTOFTRMTDCError
 {
  public:
-  UInt_t GetErrorFlags() {return fErrorFlags;};
-  UInt_t GetMBZ() {return fMBZ;};
-  UInt_t GetTDCID () {return fTDCID;};
-  UInt_t GetWordType() {return fWordType;};
+  UInt_t GetErrorFlags() const {return fErrorFlags;};
+  UInt_t GetMBZ() const {return fMBZ;};
+  UInt_t GetTDCID () const {return fTDCID;};
+  UInt_t GetWordType() const {return fWordType;};
  private:
-  UInt_t fErrorFlags: 15;
-  UInt_t fMBZ:        9;
-  UInt_t fTDCID:      4;
-  UInt_t fWordType:   4;
+  UInt_t fErrorFlags: 15; // error flags
+  UInt_t fMBZ:         9; // must-be-zero bits
+  UInt_t fTDCID:       4; // TDC number
+  UInt_t fWordType:    4; // word type
 };
 
 #endif