]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSValidCellDataStruct.h
- Bug fix: in the creation/reading of the trigger DCS values, the HV and currents...
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSValidCellDataStruct.h
CommitLineData
1b41ab20 1//-*- Mode: C++ -*-
2// $Id$
3
14ff16ed 4#ifndef ALIHLTPHOSVALIDCELLDATASTRUCT_H
5#define ALIHLTPHOSVALIDCELLDATASTRUCT_H
bde48b84 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 **************************************************************************/
21
b318b605 22#include "AliHLTDataTypes.h"
9ea9d56a 23#include "Rtypes.h"
b318b605 24
47f7b25e 25
26
b6bb24d3 27//#define N_DATA_SAMPLES 70
14ff16ed 28//#define N_DATA_SAMPLES 510
47f7b25e 29#define N_DATA_SAMPLES 300
b6bb24d3 30
2bcb5a06 31struct AliHLTPHOSValidCellDataStruct
bde48b84 32{
d949e02e 33 Int_t fX;
34 Int_t fZ;
d949e02e 35 Int_t fGain;
24dff8b3 36 Float_t fEnergy;
37 Float_t fTime;
b6bb24d3 38 Int_t fCrazyness;
47f7b25e 39
6f66f946 40 // Int_t fNSamples;
41
42 // Int_t *fData;
43
47f7b25e 44 // unsigned int fDataOffset;
45 // Int_t *fData2;
46
6f66f946 47 // Int_t fData[N_DATA_SAMPLES];
47f7b25e 48
bde48b84 49};
50
47f7b25e 51
52
bde48b84 53#endif
05be0766 54