]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSValidCellDataStruct.h
Finetuing of software (Oystein), improved shared memory interface
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSValidCellDataStruct.h
CommitLineData
14ff16ed 1#ifndef ALIHLTPHOSVALIDCELLDATASTRUCT_H
2#define ALIHLTPHOSVALIDCELLDATASTRUCT_H
bde48b84 3
b318b605 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
b318b605 19#include "AliHLTDataTypes.h"
9ea9d56a 20#include "Rtypes.h"
b318b605 21
47f7b25e 22
23
b6bb24d3 24//#define N_DATA_SAMPLES 70
14ff16ed 25//#define N_DATA_SAMPLES 510
47f7b25e 26#define N_DATA_SAMPLES 300
b6bb24d3 27
2bcb5a06 28struct AliHLTPHOSValidCellDataStruct
bde48b84 29{
d949e02e 30 Int_t fX;
31 Int_t fZ;
d949e02e 32 Int_t fGain;
24dff8b3 33 Float_t fEnergy;
34 Float_t fTime;
b6bb24d3 35 Int_t fCrazyness;
47f7b25e 36
6f66f946 37 // Int_t fNSamples;
38
39 // Int_t *fData;
40
47f7b25e 41 // unsigned int fDataOffset;
42 // Int_t *fData2;
43
6f66f946 44 // Int_t fData[N_DATA_SAMPLES];
47f7b25e 45
bde48b84 46};
47
47f7b25e 48
49
bde48b84 50#endif
05be0766 51