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