]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSRecPointDataStruct.h
Coding conventions and minor fixes
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRecPointDataStruct.h
CommitLineData
22216204 1
2/**************************************************************************
f3ab4848 3 * This file is property of and copyright by the ALICE HLT Project *
4 * All rights reserved. *
22216204 5 * *
f3ab4848 6 * Primary Authors: Oystein Djuvsland *
22216204 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 *
f3ab4848 13 * about the suitability of this software for any purpose. It is *
22216204 14 * provided "as is" without express or implied warranty. *
15 **************************************************************************/
16
f3ab4848 17#ifndef ALIHLTPHOSRECPOINTDATASTRUCT_H
18#define ALIHLTPHOSRECPOINTDATASTRUCT_H
19
20//struct AliHLTPHOSDigitDataStruct;
21#include "AliHLTPHOSDigitDataStruct.h"
22//#include "AliHLTTypes.h"
23
22216204 24struct AliHLTPHOSRecPointDataStruct
25{
f3ab4848 26
27 //AliHLTUInt8_t fMultiplicity;
28 UInt_t fMultiplicity;
22216204 29 Float_t fX;
30 Float_t fZ;
f3ab4848 31 Float_t fAmp;
6e709a0d 32 Float_t fM2x;
33 Float_t fM2z;
34 Float_t fM3x;
35 Float_t fM4z;
36 Float_t fPhixe;
37 Float_t fDistanceToBadChannel;
f3ab4848 38 AliHLTPHOSDigitDataStruct fDigitsList[64];
6e709a0d 39
22216204 40};
41
42#endif