]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSDataHeaderStruct.h
- Bug fix: in the creation/reading of the trigger DCS values, the HV and currents...
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSDataHeaderStruct.h
1 //-*- Mode: C++ -*-
2 // $Id$
3
4 #ifndef ALIHLTPHOSDATAHEADERSTRUCT_H
5 #define ALIHLTPHOSDATAHEADERSTRUCT_H
6 /**************************************************************************
7  * This file is property of and copyright by the ALICE HLT Project        * 
8  * All rights reserved.                                                   *
9  *                                                                        *
10  * Primary Author:  Per Thomas Hille  <perthi@fys.uio.no>                 *
11  *                                                                        *
12  * Permission to use, copy, modify and distribute this software and its   *
13  * documentation strictly for non-commercial purposes is hereby granted   *
14  * without fee, provided that the above copyright notice appears in all   *
15  * copies and that both the copyright notice and this permission notice   *
16  * appear in the supporting documentation. The authors make no claims     *
17  * about the suitability of this software for any purpose. It is          * 
18  * provided "as is" without express or implied warranty.                  *
19  **************************************************************************/
20
21
22 #include "AliHLTDataTypes.h"
23
24 struct AliHLTPHOSDataHeaderStruct
25 {
26   AliHLTUInt32_t fSize;              /**<Total size of datablock in bytes, incuding the header*/
27   AliHLTComponentDataType fDataType; /**<Data type stored in this file */
28   AliHLTUInt32_t fEventID;           /**<The HLT internal event ID for this event */
29   AliHLTUInt32_t fAlgorithm;         /**<Wich algorithm was uses estimate cellenergies*/
30   AliHLTUInt32_t fFormatVersion;     /**<Header format version, currently 1*/
31   AliHLTUInt32_t fFutureUse0;
32   AliHLTUInt32_t fFutureUse1;
33   AliHLTUInt32_t fFutureUse2;
34 };
35
36
37 #endif