4dfc10af |
1 | #ifndef ALIHLTPHOSRCUCELLACCUMULATEDENERGYDATASTRUCT_H |
2 | #define ALIHLTPHOSRCUCELLACCUMULATEDENERGYDATASTRUCT_H |
3 | |
4 | /*************************************************************************** |
5 | * Copyright(c) 2007, ALICE Experiment at CERN, All rights reserved. * |
6 | * * |
7 | * Author: Per Thomas Hille <perthi@fys.uio.no> for the ALICE HLT Project. * |
8 | * Contributors are mentioned in the code where appropriate. * |
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 | |
dabc4c35 |
19 | |
20 | //#include "AliHLTPHOSCommonDefs.h" |
21 | #include "AliHLTPHOSConstants.h" |
22 | using namespace PhosHLTConst; |
4dfc10af |
23 | |
24 | |
25 | struct AliHLTPHOSRcuCellAccumulatedEnergyDataStruct |
26 | { |
27 | AliHLTUInt8_t fModuleID; |
28 | AliHLTUInt8_t fRcuX; |
29 | AliHLTUInt8_t fRcuZ; |
30 | float fAccumulatedEnergies[N_XCOLUMNS_RCU][N_ZROWS_RCU][N_GAINS]; |
31 | AliHLTUInt32_t fHits[N_XCOLUMNS_RCU][N_ZROWS_RCU][N_GAINS]; |
dbd79fad |
32 | AliHLTUInt32_t fDeadChannelMap[N_XCOLUMNS_RCU][N_ZROWS_RCU][N_GAINS]; |
4dfc10af |
33 | }; |
34 | |
35 | |
36 | #endif |