bde48b84 |
1 | #ifndef ALIHLTPHOSRCUCELLENERGYDATASTRUCT_H |
2 | #define ALIHLTPHOSRCUCELLENERGYDATASTRUCT_H |
3 | |
4 | #include "AliHLTPHOSCommonDefs.h" |
5 | #include "AliHLTPHOSValidCellDataStruct.h" |
6 | |
7 | struct AliHLTPHOSRcuCellEnergyDataStruct |
8 | { |
9 | AliHLTUInt16_t fRcuX; |
10 | AliHLTUInt16_t fRcuZ; |
11 | AliHLTUInt16_t fModuleID; |
12 | AliHLTUInt16_t fCnt; |
2bcb5a06 |
13 | AliHLTPHOSValidCellDataStruct fValidData[N_ROWS_RCU*N_COLUMNS_RCU*N_GAINS]; |
14 | Double_t fCellEnergies[N_ROWS_RCU][N_COLUMNS_RCU][N_GAINS]; |
bde48b84 |
15 | |
16 | }; |
17 | |
18 | |
19 | #endif |