]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSDigitContainerDataStruct.h
Selectiv readout and writing to FXS (oystein)
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSDigitContainerDataStruct.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 x * 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
17 #ifndef ALIHLTPHOSDIGITCONTAINERSTRUCT_H
18 #define ALIHLTPHOSDIGITCONTAINERSTRUCT_H
19
20 /**
21  * Digit data struct for PHOS HLT
22  *
23  * @file   AliHLTPHOSDigitContainerDataStruct.h
24  * @author Oystein Djuvsland
25  * @date
26  * @brief  Digit container data struct for PHOS HLT
27  */
28
29 // see below for class documentation
30 // or
31 // refer to README to build package
32 // or
33 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
34
35 #include "Rtypes.h"
36 #include "AliHLTPHOSDigitDataStruct.h"
37
38 /**
39  * @struct AliHLTPHOSDigitContainerDataStruct
40  * Digit container data struct for PHOS HLT
41  *
42  * @ingroup alihlt_phos
43  */
44 struct AliHLTPHOSDigitContainerDataStruct
45 {
46
47   /** Number of digits in container */
48   UInt_t fNDigits;                                     //COMMENT
49
50   /** Module number */
51   UInt_t fPHOSModule;                                  //COMMENT
52
53   /** Array of digits in container */
54   AliHLTPHOSDigitDataStruct fDigitDataStruct[N_XCOLUMNS_RCU*N_ZROWS_RCU*N_GAINS];    //COMMENT
55
56 };
57
58
59 #endif