]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFTRMGlobalHeader.h
Single-run tree added + trending from tree list
[u/mrichter/AliRoot.git] / TOF / AliTOFTRMGlobalHeader.h
index 966ec60167244318e025d9d06b69d77a760fa6ea..4554df83483fe407b60bb206d371bce1fa89b38b 100644 (file)
@@ -6,29 +6,31 @@
 
 /* $Id: AliTOFRawDataFormat.h 23881 2008-02-12 16:46:22Z decaro $ */
 
-/**************************************************************
- *                                                            *
- *   This classes provide the TOF raw data bit fields.        *
- *                                                            *
- *************************************************************/
+///////////////////////////////////////////////////////////////
+//                                                           //
+//   This classes provide the TOF raw data bit fields.       //
+//                                                           //
+///////////////////////////////////////////////////////////////
 
 #include "TROOT.h"
 
 class AliTOFTRMGlobalHeader
 {
  public:
-  UInt_t GetSlotID() {return fSlotID;};
-  UInt_t GetEventWords() {return fEventWords;};
-  UInt_t GetACQBits() {return fACQBits;};
-  UInt_t GetLBit() {return fLBit;};
-  UInt_t GetMBZ() {return fMBZ;};
-  UInt_t GetWordType() {return fWordType;};
+  UInt_t GetSlotID() const {return fSlotID;};
+  UInt_t GetEventWords() const {return fEventWords;};
+  UInt_t GetACQBits() const {return fACQBits;};
+  UInt_t GetLBit() const {return fLBit;};
+  UInt_t GetEBit() const {return fEBit;};
+  UInt_t GetMBZ() const {return fMBZ;};
+  UInt_t GetWordType() const {return fWordType;};
  private:
   UInt_t fSlotID:     4;
   UInt_t fEventWords: 13;
   UInt_t fACQBits:    2;
   UInt_t fLBit:       1;
-  UInt_t fMBZ:        8;
+  UInt_t fEBit:       1;
+  UInt_t fMBZ:        7;
   UInt_t fWordType:   4;
 };