]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/Reve/TrackGL.h
Add Getters and Setters in TrackRnrStyle and TrackList to define rendering of path...
[u/mrichter/AliRoot.git] / EVE / Reve / TrackGL.h
CommitLineData
31eaa632 1// $Header$
2
3#ifndef REVE_TrackGL_H
4#define REVE_TrackGL_H
5
6#include <Reve/LineGL.h>
7
8class TGLViewer;
9class TGLScene;
10
11namespace Reve {
12
13class Track;
14
15class TrackGL : public LineGL
16{
17private:
18 TrackGL(const TrackGL&); // Not implemented
19 TrackGL& operator=(const TrackGL&); // Not implemented
20
21protected:
22
23public:
24 TrackGL();
25 virtual ~TrackGL();
26
27 // To support two-level selection
28 // virtual Bool_t SupportsSecondarySelect() const { return kTRUE; }
29 virtual void ProcessSelection(UInt_t* ptr, TGLViewer*, TGLScene*);
30
31 ClassDef(TrackGL, 0);
32}; // endclass TrackGL
33
34}
35
36#endif