]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/EVE/AliHLTEveISPD.h
- fixing use of centrality class
[u/mrichter/AliRoot.git] / HLT / EVE / AliHLTEveISPD.h
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  ISDD Instance of Eve display processor
8
9 #ifndef ALIHLTEVEISPD_H
10 #define ALIHLTEVEISPD_H
11
12 #include "AliHLTEveITS.h"
13 class TEvePointSet;
14
15 class AliHLTEveISPD : public AliHLTEveITS {
16
17 public:
18   
19   /** Constructor  **/
20   AliHLTEveISPD();
21
22   /** Destructor **/
23  ~AliHLTEveISPD();
24
25 private:
26
27   /** copy constructor prohibited */
28   AliHLTEveISPD(const AliHLTEveISPD&);
29   /** assignment operator prohibited */
30   AliHLTEveISPD& operator = (const AliHLTEveISPD );
31
32   /** Inherited from AliHLTEveITS */
33   void SetUpPointSet(TEvePointSet * ps);
34   
35   ClassDef(AliHLTEveISPD, 0);
36 };
37
38 #endif