]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFDRMStatusHeader4.h
correcting AliHLTGlobalTriggerDecision::Clear(): using Delete instead of Clear for...
[u/mrichter/AliRoot.git] / TOF / AliTOFDRMStatusHeader4.h
CommitLineData
5b4ed716 1#ifndef ALITOFDRMSTATUSHEADER4_H
2#define ALITOFDRMSTATUSHEADER4_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
17class AliTOFDRMStatusHeader4
18{
19 public:
20 UInt_t GetSlotID() {return fSlotID;};
21 UInt_t GetTemperature() {return fTemperature;};
22 UInt_t GetMBZ1() {return fMBZ1;};
23 UInt_t GetACKBit() {return fACKBit;};
24 UInt_t GetSensAD() {return fSensAD;};
25 UInt_t GetMBZ2() {return fMBZ2;};
26 UInt_t GetUNDEFINED() {return fUNDEFINED;};
27 UInt_t GetWordType() {return fWordType;};
28 private:
29 UInt_t fSlotID: 4;
30 UInt_t fTemperature: 10;
31 UInt_t fMBZ1: 1;
32 UInt_t fACKBit: 1;
33 UInt_t fSensAD: 3;
34 UInt_t fMBZ2: 1;
35 UInt_t fUNDEFINED: 8;
36 UInt_t fWordType: 4;
37};
38
39#endif