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