]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSRecPointDataStruct.h
7fcf9e29250ae64262094421141a4dcee0e885c8
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRecPointDataStruct.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 ALIHLTPHOSRECPOINTDATASTRUCT_H
21 #define ALIHLTPHOSRECPOINTDATASTRUCT_H
22
23 /**
24  * Rec point data struct for PHOS HLT
25  *
26  * @file   AliHLTPHOSRecPointDataStruct.h
27  * @author Oystein Djuvsland
28  * @date
29  * @brief  Rec point data 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 #include "AliHLTPHOSDigitDataStruct.h"
39
40 /**
41  * @struct AliHLTPHOSRecPointDataStruct
42  * Rec point data struct for PHOS HLT
43  *
44  * @ingroup alihlt_phos
45  */
46 struct AliHLTPHOSRecPointDataStruct
47 {
48
49   //AliHLTUInt8_t fMultiplicity; 
50   /** Multiplicity of digits in the rec point */
51   UInt_t fMultiplicity;                       //COMMENT
52
53   /** x coordinate */
54   Float_t fX;                                 //COMMENT
55
56   /** z coordinate */ 
57   Float_t fZ;                                 //COMMENT
58
59   /** Module number */
60   Int_t fModule;                              //COMMENT
61
62   /** The total energy of the rec point */
63   Float_t fAmp;                               //COMMENT
64
65   /** Second moment along x axis */
66   Float_t fM2x;                               //COMMENT
67
68   /** Second moment along z axis */ 
69   Float_t fM2z;                               //COMMENT
70
71   /** Third moment along x axis */
72   Float_t fM3x;                               //COMMENT
73
74   /** Fourth moment along z axis */ 
75   Float_t fM4z;                               //COMMENT
76
77   /** Angle between cog vector and eigen vector */
78   Float_t fPhixe;                             //COMMENT
79
80   /** Distance to nearest bad channel */
81   Float_t fDistanceToBadChannel;              //COMMENT
82
83   /** 
84    * Digit offset for the first digit in the 
85    * rec point.
86    */
87   Int_t fStartDigitOffset;                    //COMMENT
88
89 };
90
91 #endif