]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/EVE/AliHLTEveISDD.h
minor coverity defect: correcting argument of assignment operator; updated file docum...
[u/mrichter/AliRoot.git] / HLT / EVE / AliHLTEveISDD.h
1 //-*- Mode: C++ -*-
2 // $Id$
3 #ifndef ALIHLTEVEISDD_H
4 #define ALIHLTEVEISDD_H
5 //* This file is property of and copyright by the ALICE HLT Project        * 
6 //* ALICE Experiment at CERN, All rights reserved.                         *
7 //* See cxx source for full Copyright notice                               *
8
9 /// @file   AliHLTEveISDD.h
10 /// @author Svein Lindal
11 /// @brief  ISDD Instance of Eve display processor
12
13 #include "AliHLTEveITS.h"
14
15
16 class AliHLTEveISDD : public AliHLTEveITS {
17
18 public:
19   
20   /** Constructor  **/
21   AliHLTEveISDD();
22
23   /** Destructor **/
24  ~AliHLTEveISDD();
25
26 private:
27
28   /** copy constructor prohibited */
29   AliHLTEveISDD(const AliHLTEveISDD&);
30   /** assignment operator prohibited */
31   AliHLTEveISDD& operator = (const AliHLTEveISDD& );
32
33   /** Inherited from AliHLTEveITS */
34   void SetUpPointSet(TEvePointSet* ps);
35   
36   ClassDef(AliHLTEveISDD, 0);
37 };
38
39 #endif