]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/EVE/AliHLTEveISPD.h
minor coverity defect: correcting argument of assignment operator; updated file docum...
[u/mrichter/AliRoot.git] / HLT / EVE / AliHLTEveISPD.h
CommitLineData
d4741ff3 1//-*- Mode: C++ -*-
2// $Id$
33791895 3#ifndef ALIHLTEVEISPD_H
4#define ALIHLTEVEISPD_H
d4741ff3 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
33791895 12
13#include "AliHLTEveITS.h"
14class TEvePointSet;
15
16class AliHLTEveISPD : public AliHLTEveITS {
17
18public:
19
20 /** Constructor **/
21 AliHLTEveISPD();
22
23 /** Destructor **/
24 ~AliHLTEveISPD();
25
26private:
27
28 /** copy constructor prohibited */
29 AliHLTEveISPD(const AliHLTEveISPD&);
30 /** assignment operator prohibited */
d4741ff3 31 AliHLTEveISPD& operator = (const AliHLTEveISPD& );
33791895 32
33 /** Inherited from AliHLTEveITS */
34 void SetUpPointSet(TEvePointSet * ps);
35
36 ClassDef(AliHLTEveISPD, 0);
37};
38
39#endif