]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RAW/AliMiniHeader.h
added print statement saying how many retries were needed.
[u/mrichter/AliRoot.git] / RAW / AliMiniHeader.h
CommitLineData
6047f886 1#ifndef ALIMINIHEADER_H
2#define ALIMINIHEADER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6
7struct AliMiniHeader {
8 UInt_t fSize; // size of the raw data in bytes
9 UChar_t fDetectorID; // unique detector number
10 UChar_t fMagicWord[3]; // hexadecimal word 123456 (used to detect byte swapping)
11 UChar_t fVersion; // mini header version
12 UChar_t fCompressionFlag; // compressed (=1) or uncompressed (=0)
13 UShort_t fDDLID; // unique DDL number
14};
15
16#endif