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