]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/EVE/AliHLTEveISPD.h
coverity warning fix
[u/mrichter/AliRoot.git] / HLT / EVE / AliHLTEveISPD.h
1 //-*- Mode: C++ -*-
2 // $Id$
3 #ifndef ALIHLTEVEISPD_H
4 #define ALIHLTEVEISPD_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   AliHLTEveISPD.h
10 /// @author Svein Lindal
11 /// @brief  SPD Instance of Eve display processor
12
13 #include "AliHLTEveITS.h"
14 class TEvePointSet;
15
16 class AliHLTEveISPD : public AliHLTEveITS {
17
18 public:
19   
20   /** Constructor  **/
21   AliHLTEveISPD();
22
23   /** Destructor **/
24  ~AliHLTEveISPD();
25
26 private:
27
28   /** copy constructor prohibited */
29   AliHLTEveISPD(const AliHLTEveISPD&);
30   /** assignment operator prohibited */
31   AliHLTEveISPD& operator = (const AliHLTEveISPD& );
32
33   /** Inherited from AliHLTEveITS */
34   void SetUpPointSet(TEvePointSet * ps);
35   
36   ClassDef(AliHLTEveISPD, 0);
37 };
38
39 #endif