]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSDigitDataStruct.h
Selectiv readout and writing to FXS (oystein)
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSDigitDataStruct.h
CommitLineData
209a4703 1
2/**************************************************************************
3 * This file is property of and copyright by the ALICE HLT Project *
4 * All rights reserved. *
5 * *
6 * Primary Authors: Oystein Djuvsland *
7 * *
8 * Permission to use, copy, modify and distribute this software and its *
9 * documentation strictly for non-commercial purposes is hereby granted *
10 * without fee, provided that the above copyright notice appears in all *
11 * copies and that both the copyright notice and this permission notice *
12 * appear in the supporting documentation. The authors make no claims *
13 * about the suitability of this software for any purpose. It is *
14 * provided "as is" without express or implied warranty. *
15 **************************************************************************/
16
17#ifndef ALIHLTPHOSDIGITDATASTRUCT_H
18#define ALIHLTPHOSDIGITDATASTRUCT_H
19
2374af72 20/**
21 * Digit struct for PHOS HLT
22 *
23 * @file AliHLTPHOSDigitDataStruct.h
24 * @author Oystein Djuvsland
25 * @date
26 * @brief Digit struct for PHOS HLT
27 */
28
29// see below for class documentation
30// or
31// refer to README to build package
32// or
33// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
34
209a4703 35#include "AliHLTPHOSBase.h"
36
2374af72 37/**
38 * @struct AliHLTPHOSDigitDataStruct
39 * Digit struct for PHOS HLT
40 *
41 * @ingroup alihlt_phos
42 */
209a4703 43struct AliHLTPHOSDigitDataStruct
44{
2374af72 45 /** The x coordinate */
209a4703 46 Int_t fX;
2374af72 47
48 /** The x coordinate */
209a4703 49 Int_t fZ;
2374af72 50
51 /** The module number */
209a4703 52 Int_t fModule;
2374af72 53
54 /** The amplitude in ADC counts */
209a4703 55 Float_t fAmplitude;
2374af72 56
57 /** The time in sample count */
209a4703 58 Float_t fTime;
2374af72 59
60 /* The energy in GeV */
209a4703 61 Float_t fEnergy;
2374af72 62
63 /** The gain */
209a4703 64 Int_t fGain;
65
2374af72 66 /** The crazyness */
209a4703 67 Int_t fCrazyness;
2374af72 68
69 /** The baseline */
209a4703 70 Float_t fBaseline;
71
209a4703 72};
73
74#endif
75