]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFDRMStatusHeader2.h
also fix emcal acceptance for 2012&2013 in ExecOnce()
[u/mrichter/AliRoot.git] / TOF / AliTOFDRMStatusHeader2.h
CommitLineData
5b4ed716 1#ifndef ALITOFDRMSTATUSHEADER2_H
2#define ALITOFDRMSTATUSHEADER2_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 AliTOFDRMStatusHeader2
18{
19 public:
46b17363 20 UInt_t GetSlotID() const {return fSlotID;};
21 UInt_t GetSlotEnableMask() const {return fSlotEnableMask;};
22 UInt_t GetMBZ() const {return fMBZ;};
23 UInt_t GetFaultID() const {return fFaultID;};
24 UInt_t GetRTOBit() const {return fRTOBit;};
25 UInt_t GetWordType() const {return fWordType;};
5b4ed716 26 private:
27 UInt_t fSlotID: 4;
28 UInt_t fSlotEnableMask: 11;
29 UInt_t fMBZ: 1;
30 UInt_t fFaultID: 11;
31 UInt_t fRTOBit: 1;
32 UInt_t fWordType: 4;
33};
34
35#endif