]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/CALO/AliHLTCaloRecPointContainerStruct.h
provide OCDB URI as macro argument
[u/mrichter/AliRoot.git] / HLT / CALO / AliHLTCaloRecPointContainerStruct.h
1 //-*- Mode: C++ -*-
2 // $Id: AliHLTCaloRecPointContainerStruct.h 29824 2008-11-10 13:43:55Z richterm $
3
4 /**************************************************************************
5  * This file is property of and copyright by the ALICE HLT Project        * 
6  * All rights reserved.                                                   *
7  *                                                                        *
8  * Primary Authors: Oystein Djuvsland                                                      *
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 #ifndef ALIHLTCALORECPOINTCOINTAINERSTRUCT_H
20 #define ALIHLTCALORECPOINTCOINTAINERSTRUCT_H
21 /**
22  * Rec point container struct for CALO HLT
23  *
24  * @file   AliHLTCaloRecPointContainerStruct.h
25  * @author Oystein Djuvsland
26  * @date
27  * @brief  Rec point container struct for CALO HLT
28  */
29
30 #include "AliHLTCaloRecPointDataStruct.h"
31
32 /**
33  * @struct AliHLTCaloRecPointContainerStruct
34  * Rec point container struct for CALO HLT
35  *
36  * @ingroup alihlt_calo
37  */
38 struct AliHLTCaloRecPointContainerStruct
39 {
40
41   /** The CALO module number */
42   UInt_t fCaloModule;
43
44   /** The number of rec points */
45   UInt_t fNRecPoints; 
46
47   /** Array of rec points in the container */
48   AliHLTCaloRecPointDataStruct fRecPointArray[100];
49
50 };
51
52 #endif