]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFTRMTDCError.h
Test for Coverity
[u/mrichter/AliRoot.git] / TOF / AliTOFTRMTDCError.h
CommitLineData
702659f6 1#ifndef ALITOFTRMTDCERROR_H
2#define ALITOFTRMTDCERROR_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 AliTOFTRMTDCError
18{
19 public:
46b17363 20 UInt_t GetErrorFlags() const {return fErrorFlags;};
21 UInt_t GetMBZ() const {return fMBZ;};
22 UInt_t GetTDCID () const {return fTDCID;};
23 UInt_t GetWordType() const {return fWordType;};
702659f6 24 private:
ebe73777 25 UInt_t fErrorFlags: 15; // error flags
26 UInt_t fMBZ: 9; // must-be-zero bits
27 UInt_t fTDCID: 4; // TDC number
28 UInt_t fWordType: 4; // word type
702659f6 29};
30
31#endif