Line data Source code
1 : #ifndef ALITOFLTMPDLDATA_H
2 : #define ALITOFLTMPDLDATA_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 AliTOFLTMPDLData
18 : {
19 : public:
20 13824 : UInt_t GetPDLValue1() const {return fPDLValue1;};
21 13824 : UInt_t GetPDLValue2() const {return fPDLValue2;};
22 13824 : UInt_t GetPDLValue3() const {return fPDLValue3;};
23 13824 : UInt_t GetPDLValue4() const {return fPDLValue4;};
24 : private:
25 : UInt_t fPDLValue1: 8;
26 : UInt_t fPDLValue2: 8;
27 : UInt_t fPDLValue3: 8;
28 : UInt_t fPDLValue4: 8;
29 : };
30 :
31 : #endif
|