]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSRecPointDataStruct.h
0ed6131b8202bc75ef92a10c99358b33d0bffbdf
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRecPointDataStruct.h
1
2 /**************************************************************************
3  * This file is property of and copyright by the ALICE HLT Project        * 
4  * All rights reserved.                                                   *
5  *                                                                        *
6  * Primary Authors: Oystein Djuvsland                                                      *
7  *                                                                        *
8  * Permission to use, copy, modify and distribute this software and its   *
9  * documentation strictly for non-commercial purposes is hereby granted   *
10  * without fee, provided that the above copyright notice appears in all   *
11  * copies and that both the copyright notice and this permission notice   *
12  * appear in the supporting documentation. The authors make no claims     *
13  * about the suitability of this software for any purpose. It is          * 
14  * provided "as is" without express or implied warranty.                  *
15  **************************************************************************/
16
17 #ifndef ALIHLTPHOSRECPOINTDATASTRUCT_H
18 #define ALIHLTPHOSRECPOINTDATASTRUCT_H
19
20 //struct AliHLTPHOSDigitDataStruct;
21 #include "AliHLTPHOSDigitDataStruct.h"
22 //#include "AliHLTTypes.h"
23
24 struct AliHLTPHOSRecPointDataStruct
25 {
26
27   //AliHLTUInt8_t fMultiplicity; 
28   UInt_t fMultiplicity;
29   Float_t fX;
30   Float_t fZ;
31   Float_t fAmp;
32   Float_t fM2x;
33   Float_t fM2z;
34   Float_t fM3x;
35   Float_t fM4z;
36   Float_t fPhixe;
37   Float_t fDistanceToBadChannel;
38   AliHLTPHOSDigitDataStruct fDigitsList[64];
39
40 };
41
42 #endif