]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSRcuCellEnergyDataStruct.h
New production macros (Yves)
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRcuCellEnergyDataStruct.h
CommitLineData
1b41ab20 1//-*- Mode: C++ -*-
2// $Id$
3
bde48b84 4#ifndef ALIHLTPHOSRCUCELLENERGYDATASTRUCT_H
5#define ALIHLTPHOSRCUCELLENERGYDATASTRUCT_H
6
b318b605 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 **************************************************************************/
dbd79fad 21//#include "AliHLTPHOSCommonDefs.h"
bde48b84 22#include "AliHLTPHOSValidCellDataStruct.h"
54496783 23#include "Rtypes.h"
bde48b84 24
dabc4c35 25#include "AliHLTPHOSConstants.h"
26using namespace PhosHLTConst;
27
bde48b84 28struct AliHLTPHOSRcuCellEnergyDataStruct
29{
14ff16ed 30 // Int_t fShmAddress;
31 Int_t fSize; //size in charcters
54496783 32 Int_t fModuleID;
33 Int_t fRcuX;
34 Int_t fRcuZ;
35 Int_t fCnt;
14ff16ed 36 Int_t fAlgorithm;
37 Int_t fInfo;
6f66f946 38 Bool_t fHasRawData;
27029341 39 AliHLTPHOSValidCellDataStruct fValidData[NXCOLUMNSRCU*NZROWSRCU*NGAINS];
bde48b84 40};
41
bde48b84 42#endif