]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSRecPointDataStruct.h
Fixing comments
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRecPointDataStruct.h
CommitLineData
f3df2ba0 1//-*- Mode: C++ -*-
1b41ab20 2// $Id$
3
22216204 4
5/**************************************************************************
f3ab4848 6 * This file is property of and copyright by the ALICE HLT Project *
7 * All rights reserved. *
22216204 8 * *
f3ab4848 9 * Primary Authors: Oystein Djuvsland *
22216204 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 *
f3ab4848 16 * about the suitability of this software for any purpose. It is *
22216204 17 * provided "as is" without express or implied warranty. *
18 **************************************************************************/
19
f3ab4848 20#ifndef ALIHLTPHOSRECPOINTDATASTRUCT_H
21#define ALIHLTPHOSRECPOINTDATASTRUCT_H
22
2374af72 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
f3ab4848 38#include "AliHLTPHOSDigitDataStruct.h"
2374af72 39
40/**
41 * @struct AliHLTPHOSRecPointDataStruct
42 * Rec point data struct for PHOS HLT
43 *
44 * @ingroup alihlt_phos
45 */
22216204 46struct AliHLTPHOSRecPointDataStruct
47{
f3ab4848 48
49 //AliHLTUInt8_t fMultiplicity;
2374af72 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 */
25b7f84c 60 Int_t fModule; //COMMENT
2374af72 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
0dc57e1b 83 /**
84 * Digit offset for the first digit in the
85 * rec point.
86 */
87 Int_t fStartDigitOffset; //COMMENT
6e709a0d 88
22216204 89};
90
91#endif