]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/EMCAL/AliHLTEMCALRcuCellAccumulatedEnergyDataStruct.h
Refactoring: rempved the usage of AliHLTEMCALConstant
[u/mrichter/AliRoot.git] / HLT / EMCAL / AliHLTEMCALRcuCellAccumulatedEnergyDataStruct.h
CommitLineData
4d6be4cd 1//-*- Mode: C++ -*-
2// $Id: AliHLTPHOSRcuCellAccumulatedEnergyDataStruct.h 31490 2009-03-15 16:27:11Z odjuvsla $
3
4#ifndef ALIHLTPHOSRCUCELLACCUMULATEDENERGYDATASTRUCT_H
5#define ALIHLTPHOSRCUCELLACCUMULATEDENERGYDATASTRUCT_H
6
7/***************************************************************************
8 * Copyright(c) 2007, ALICE Experiment at CERN, All rights reserved. *
9 * *
10 * Author: Per Thomas Hille <perthi@fys.uio.no> for the ALICE HLT Project. *
11 * Contributors are mentioned in the code where appropriate. *
12 * *
13 * Permission to use, copy, modify and distribute this software and its *
14 * documentation strictly for non-commercial purposes is hereby granted *
15 * without fee, provided that the above copyright notice appears in all *
16 * copies and that both the copyright notice and this permission notice *
17 * appear in the supporting documentation. The authors make no claims *
18 * about the suitability of this software for any purpose. It is *
19 * provided "as is" without express or implied warranty. *
20 **************************************************************************/
21
22
23//#include "AliHLTPHOSCommonDefs.h"
4f4b7ba4 24#include "AliHLTCaloConstant.h"
4d6be4cd 25// using namespace PhosHLTConst;
26using namespace CaloHLTConst;
27
28
29struct AliHLTCaloRcuCellAccumulatedEnergyDataStruct
30{
31 AliHLTUInt8_t fModuleID;
32 AliHLTUInt8_t fRcuX;
33 AliHLTUInt8_t fRcuZ;
34 float fAccumulatedEnergies[NXCOLUMNSMOD][NZROWSMOD][NGAINS];
35 AliHLTUInt32_t fHits[NXCOLUMNSMOD][NZROWSMOD][NGAINS];
36 AliHLTUInt32_t fDeadChannelMap[NXCOLUMNSMOD][NZROWSMOD][NGAINS];
37
38 /*
39 AliHLTUInt8_t fModuleID;
40 AliHLTUInt8_t fRcuX;
41 AliHLTUInt8_t fRcuZ;
42 float fAccumulatedEnergies[NXCOLUMNSRCU][NZROWSRCU][NGAINS];
43 AliHLTUInt32_t fHits[NXCOLUMNSRCU][NZROWSRCU][NGAINS];
44 AliHLTUInt32_t fDeadChannelMap[NXCOLUMNSRCU][NZROWSRCU][NGAINS];
45 */
46
47};
48
49
50#endif