]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/CALO/AliHLTCaloChannelDataStruct.h
Per Thomas: removing cout statement from event loop
[u/mrichter/AliRoot.git] / HLT / CALO / AliHLTCaloChannelDataStruct.h
CommitLineData
178dd351 1//-*- Mode: C++ -*-
2// $Id: AliHLTPHOSChannelDataStruct.h 35071 2009-09-29 05:26:09Z phille $
3
4#ifndef ALIHLTCALOCHANNELDATASTRUCT_H
5#define ALIHLTCALOCHANNELDATASTRUCT_H
6
8b848697 7
8
178dd351 9/**************************************************************************
10 * Copyright(c) 2007, ALICE Experiment at CERN, All rights reserved. *
11 * *
12 * Author: Per Thomas Hille <perthi@fys.uio.no> for the ALICE HLT Project.*
13 * Contributors are mentioned in the code where appropriate. *
14 * *
15 * Permission to use, copy, modify and distribute this software and its *
16 * documentation strictly for non-commercial purposes is hereby granted *
17 * without fee, provided that the above copyright notice appears in all *
18 * copies and that both the copyright notice and this permission notice *
19 * appear in the supporting documentation. The authors make no claims *
20 * about the suitability of this software for any purpose. It is *
21 * provided "as is" without express or implied warranty. *
22 **************************************************************************/
23//#include "AliHLTPHOSCommonDefs.h"
24
9c1e3f90 25
178dd351 26#include "Rtypes.h"
27
28//#include "AliHLTPHOSConstants.h"
29//using namespace PhosHLTConst;
30
31struct AliHLTCaloChannelDataStruct
32{
33 Float_t fEnergy;
34 Float_t fTime;
b850c417 35 // UShort_t fChannelID;
36
37
178dd351 38 Short_t fCrazyness;
b850c417 39 int fChannelID;
40
178dd351 41 // Short_t fRawDataSize; //the size of the raw data
5f469795 42 //private:
b850c417 43 // virtual ~AliHLTCaloChannelDataStruct(){};
44
45 /*
5f469795 46 AliHLTCaloChannelDataStruct(): fEnergy(0),
47 fTime(0),
48 fChannelID(0),
49 fCrazyness()
50
51 {
52 }
b850c417 53 */
54}
55;
178dd351 56
57#endif
58