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