]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSCaloClusterContainerStruct.h
Combine TEPEMGEN and EPEMGEN in one library to avoid circular dependences. Compilatio...
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSCaloClusterContainerStruct.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 ALIHLTPHOSCALOCLUSTERCOINTAINERSTRUCT_H
17 #define ALIHLTPHOSCALOCLUSTERCOINTAINERSTRUCT_H
18 /**
19  * Calo cluster container struct for PHOS HLT
20  *
21  * @file   AliHLTPHOSCaloClusterContainerStruct.h
22  * @author Oystein Djuvsland
23  * @date
24  * @brief  Rec point container struct for PHOS HLT
25  */
26
27 #include "AliHLTPHOSCaloClusterDataStruct.h"
28
29 /**
30  * @struct AliHLTPHOSCaloClusterContainerStruct
31  * Calo cluster container struct for PHOS HLT
32  *
33  * @ingroup alihlt_phos
34  */
35 struct AliHLTPHOSCaloClusterContainerStruct
36 {
37
38   /** The PHOS module number */
39   UInt_t fPHOSModule;
40
41   /** The number of clusters */
42   UInt_t fNCaloClusters; 
43
44   /** Array of rec points in the container */
45   AliHLTPHOSCaloClusterDataStruct fCaloClusterArray[100];
46
47 };
48
49 #endif