]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFDRMStatusHeader3.h
fix in AliTOFtracker: TOF channel map
[u/mrichter/AliRoot.git] / TOF / AliTOFDRMStatusHeader3.h
CommitLineData
2bf4d9d6 1#ifndef ALITOFDRMSTATUSHEADER3_H
2#define ALITOFDRMSTATUSHEADER3_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 AliTOFDRMStatusHeader3
18{
19 public:
ce469aed 20 UInt_t GetSlot() const {return fSlotID;};
21 UInt_t GetL0BCID() const {return fL0BCID;};
22 UInt_t GetRunTimeInfo() const {return fRunTimeInfo;};
23 UInt_t GetWordType() const {return fWordType;};
2bf4d9d6 24 private:
ce469aed 25 UInt_t fSlotID: 4; // slodID
26 UInt_t fL0BCID: 12; // L0BCID
27 UInt_t fRunTimeInfo: 12; // runtime info
28 UInt_t fWordType: 4; // word type
2bf4d9d6 29};
30
31#endif