]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/EVE/AliHLTEveISDD.h
CMake: removing qpythia from the depedencies
[u/mrichter/AliRoot.git] / HLT / EVE / AliHLTEveISDD.h
CommitLineData
d4741ff3 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 *
33791895 8
d4741ff3 9/// @file AliHLTEveISDD.h
33791895 10/// @author Svein Lindal
11/// @brief ISDD Instance of Eve display processor
12
33791895 13#include "AliHLTEveITS.h"
14
15
16class AliHLTEveISDD : public AliHLTEveITS {
17
18public:
19
20 /** Constructor **/
21 AliHLTEveISDD();
22
23 /** Destructor **/
24 ~AliHLTEveISDD();
25
26private:
27
28 /** copy constructor prohibited */
29 AliHLTEveISDD(const AliHLTEveISDD&);
30 /** assignment operator prohibited */
d4741ff3 31 AliHLTEveISDD& operator = (const AliHLTEveISDD& );
33791895 32
33 /** Inherited from AliHLTEveITS */
34 void SetUpPointSet(TEvePointSet* ps);
35
36 ClassDef(AliHLTEveISDD, 0);
37};
38
39#endif