]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/CALO/AliHLTCaloDigitContainerDataStruct.h
- adding new clusterizer class. Basic algorithm that uses a NxN matrix centered aroun...
[u/mrichter/AliRoot.git] / HLT / CALO / AliHLTCaloDigitContainerDataStruct.h
1 //-*- Mode: C++ -*-
2 // $Id: AliHLTCaloDigitContainerDataStruct.h 35107 2009-09-30 01:45:06Z phille $
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 x * 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
20 #ifndef ALIHLTCALODIGITCONTAINERSTRUCT_H
21 #define ALIHLTCALODIGITCONTAINERSTRUCT_H
22
23 /**
24  * Digit data struct for CALO HLT
25  *
26  * @file   AliHLTCaloDigitContainerDataStruct.h
27  * @author Oystein Djuvsland
28  * @date
29  * @brief  Digit container data struct for CALO HLT
30  */
31
32 // see below for class documentation
33 // or
34 // refer to README to build package
35 // or
36 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
37
38 #include "Rtypes.h"
39 #include "AliHLTCaloDigitDataStruct.h"
40
41
42
43 // using namespace CaloHLTConst;
44
45 /**
46  * @struct AliHLTCaloDigitContainerDataStruct
47  * Digit container data struct for Calo HLT
48  *
49  * @ingroup alihlt_calo
50  */
51 struct AliHLTCaloDigitContainerDataStruct
52 {
53
54   /** Number of digits in container */
55   UInt_t fNDigits;                                     //COMMENT
56
57   /** Module number */
58   UInt_t fCaloModule;                                  //COMMENT
59
60   /** Array of digits in container */
61   AliHLTCaloDigitDataStruct fDigitDataStruct[10000];
62
63 };
64
65
66 #endif