Line data Source code
1 : #ifndef ALITOFLTMORDATA_H
2 : #define ALITOFLTMORDATA_H
3 :
4 : /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 : * See cxx source for full Copyright notice */
6 :
7 : /* $Id: AliTOFRawDataFormat.h 23881 2008-02-12 16:46:22Z decaro $ */
8 :
9 : ///////////////////////////////////////////////////////////////
10 : // //
11 : // This classes provide the TOF raw data bit fields. //
12 : // //
13 : ///////////////////////////////////////////////////////////////
14 :
15 : #include "TROOT.h"
16 :
17 : class AliTOFLTMORData
18 : {
19 : public:
20 18432 : UInt_t GetORValue1() const {return fORValue1;};
21 18432 : UInt_t GetORValue2() const {return fORValue2;};
22 18432 : UInt_t GetORValue3() const {return fORValue3;};
23 : UInt_t GetMBZ() const {return fMBZ;};
24 : private:
25 : UInt_t fORValue1: 10;
26 : UInt_t fORValue2: 10;
27 : UInt_t fORValue3: 10;
28 : UInt_t fMBZ: 2;
29 : };
30 :
31 : #endif
|