]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSValidChannelDataStruct.h
Classes for online creation of root trees
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSValidChannelDataStruct.h
CommitLineData
fc1b0500 1#ifndef ALIHLTPHOSVALIDCHANNELDATASTRUCT_H
2#define ALIHLTPHOSVALIDCHANNELDATASTRUCT_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
19#include "AliHLTDataTypes.h"
20#include "Rtypes.h"
21#include "AliHLTPHOSCommonDefs.h"
22
23struct AliHLTPHOSValidChannelDataStruct
24{
25 AliHLTUInt8_t fZ;
26 AliHLTUInt8_t fX;
27 AliHLTUInt8_t fGain;
9c9d15d6 28 // AliHLTUInt16_t fNSamples;
29 AliHLTUInt16_t fDataSize;
fc1b0500 30 // AliHLTUInt16_t fChannelData[ALTRO_MAX_SAMPLES];
9c9d15d6 31 // Float_t fChannelData[350];
32 // UInt_t fChannelData[1024];
33 UInt_t fChannelData[200];
34 // UInt_t *fChannelData;
35
fc1b0500 36};
37
38
39#endif
40