]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSRecPointContainerStruct.h
completely re-worked TPC CA tracking code (Sergey/Ivan)
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRecPointContainerStruct.h
1 /**************************************************************************
2  * This file is property of and copyright by the ALICE HLT Project        * 
3  * All rights reserved.                                                   *
4  *                                                                        *
5  * Primary Authors: Oystein Djuvsland                                                      *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          * 
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 #ifndef ALIHLTPHOSRECPOINTCOINTAINERSTRUCT_H
17 #define ALIHLTPHOSRECPOINTCOINTAINERSTRUCT_H
18 /**
19  * Rec point container struct for PHOS HLT
20  *
21  * @file   AliHLTPHOSRecPointContainerStruct.h
22  * @author Oystein Djuvsland
23  * @date
24  * @brief  Rec point container struct for PHOS HLT
25  */
26
27 #include "AliHLTPHOSRecPointDataStruct.h"
28
29 /**
30  * @struct AliHLTPHOSRecPointContainerStruct
31  * Rec point container struct for PHOS HLT
32  *
33  * @ingroup alihlt_phos
34  */
35 struct AliHLTPHOSRecPointContainerStruct
36 {
37
38   /** The PHOS module number */
39   UInt_t fPHOSModule;
40
41   /** The number of rec points */
42   UInt_t fNRecPoints; 
43
44   /** Array of rec points in the container */
45   AliHLTPHOSRecPointDataStruct fRecPointArray[1000];
46
47 };
48
49 #endif