AliMiniHeader moved to separate file
authortkuhr <tkuhr@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 14 Nov 2003 12:57:57 +0000 (12:57 +0000)
committertkuhr <tkuhr@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 14 Nov 2003 12:57:57 +0000 (12:57 +0000)
RAW/AliMiniHeader.h [new file with mode: 0644]

diff --git a/RAW/AliMiniHeader.h b/RAW/AliMiniHeader.h
new file mode 100644 (file)
index 0000000..92738ad
--- /dev/null
@@ -0,0 +1,16 @@
+#ifndef ALIMINIHEADER_H
+#define ALIMINIHEADER_H
+/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ * See cxx source for full Copyright notice                               */
+
+
+struct AliMiniHeader {
+  UInt_t    fSize;              // size of the raw data in bytes
+  UChar_t   fDetectorID;        // unique detector number
+  UChar_t   fMagicWord[3];      // hexadecimal word 123456 (used to detect byte swapping)
+  UChar_t   fVersion;           // mini header version
+  UChar_t   fCompressionFlag;   // compressed (=1) or uncompressed (=0)
+  UShort_t  fDDLID;             // unique DDL number
+};
+
+#endif