]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/EVE/AliHLTEvePhos.h
-Created new libarey AliHLTEve with processor classes for the HLT online display
[u/mrichter/AliRoot.git] / HLT / EVE / AliHLTEvePhos.h
CommitLineData
33791895 1/* This file is property of and copyright by the ALICE HLT Project *
2 * ALICE Experiment at CERN, All rights reserved. *
3 * See cxx source for full Copyright notice */
4
5/// @file AliHLTEveCalo.h
6/// @author Svein Lindal
7/// @brief PHOS Instance of Eve display processor
8
9#ifndef ALIHLTEVEPHOS_H
10#define ALIHLTEVEPHOS_H
11
12#include "AliHLTEveCalo.h"
13class TEveElementList;
14
15class AliHLTEvePhos : public AliHLTEveCalo {
16
17public:
18
19 /** Constructor **/
20 AliHLTEvePhos();
21
22 /** Destructor **/
23 ~AliHLTEvePhos();
24
25private:
26
27 /** copy constructor prohibited */
28 AliHLTEvePhos(const AliHLTEvePhos&);
29 /** assignment operator prohibited */
30 AliHLTEvePhos& operator = (const AliHLTEvePhos );
31
32 /** inherited from AliHLTEveCalo */
33 TEveElementList * CreateElementList();
34
35 /** inherited from AliHLTEveCalo */
36 void AddClusters(Float_t * pos, Int_t module, Float_t energy);
37
38 /** inherited from AliHLTEveCalo */
39 void AddDigits(UShort_t fX, UShort_t fZ, Int_t module, Float_t energy);
40
41 ClassDef(AliHLTEvePhos, 0);
42};
43
44#endif