]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSValidCellDataStruct.h
55941fa8a1ea5b0901b3506fc74cf54fdaef571c
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSValidCellDataStruct.h
1 #ifndef ALIHLTPHOSVALIDCELLDATASTRUCT_H
2 #define ALIHLTPHOSVALIDCELLDATASTRUCT_H 
3
4 /***************************************************************************
5  * Copyright(c) 2007, ALICE Experiment at CERN, All rights reserved.       *
6  *                                                                         *
7  * Author: Per Thomas Hille <perthi@fys.uio.no> for the ALICE HLT Project. *
8  * Contributors are mentioned in the code where appropriate.               *
9  *                                                                         *
10  * Permission to use, copy, modify and distribute this software and its    *
11  * documentation strictly for non-commercial purposes is hereby granted    *
12  * without fee, provided that the above copyright notice appears in all    *
13  * copies and that both the copyright notice and this permission notice    *
14  * appear in the supporting documentation. The authors make no claims      *
15  * about the suitability of this software for any purpose. It is           *
16  * provided "as is" without express or implied warranty.                   *
17  **************************************************************************/
18
19 #include "AliHLTDataTypes.h"
20 #include "Rtypes.h"
21
22 //#define N_DATA_SAMPLES 70
23 //#define N_DATA_SAMPLES 510
24
25 struct AliHLTPHOSValidCellDataStruct
26 {
27   Int_t fX;
28   Int_t fZ;
29   Int_t fID;
30   Int_t fGain;
31   Float_t fEnergy;
32   Float_t fTime;
33   Int_t fCrazyness;
34   Int_t fNSamples;
35   Int_t *fData;
36   //  Int_t fData[N_DATA_SAMPLES];
37 };
38
39 #endif
40