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