]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFTRMGlobalHeader.h
update to monitor macros
[u/mrichter/AliRoot.git] / TOF / AliTOFTRMGlobalHeader.h
CommitLineData
c829ddd7 1#ifndef ALITOFTRMGLOBALHEADER_H
2#define ALITOFTRMGLOBALHEADER_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
702659f6 9///////////////////////////////////////////////////////////////
10// //
11// This classes provide the TOF raw data bit fields. //
12// //
13///////////////////////////////////////////////////////////////
c829ddd7 14
15#include "TROOT.h"
16
17class AliTOFTRMGlobalHeader
18{
19 public:
46b17363 20 UInt_t GetSlotID() const {return fSlotID;};
21 UInt_t GetEventWords() const {return fEventWords;};
22 UInt_t GetACQBits() const {return fACQBits;};
23 UInt_t GetLBit() const {return fLBit;};
24 UInt_t GetEBit() const {return fEBit;};
25 UInt_t GetMBZ() const {return fMBZ;};
26 UInt_t GetWordType() const {return fWordType;};
c829ddd7 27 private:
5b4ed716 28 UInt_t fSlotID: 4;
29 UInt_t fEventWords: 13;
30 UInt_t fACQBits: 2;
31 UInt_t fLBit: 1;
32 UInt_t fEBit: 1;
33 UInt_t fMBZ: 7;
34 UInt_t fWordType: 4;
c829ddd7 35};
36
37#endif /* ALITOFTRMGLOBALHEADER_H */