]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/Reve/NLTPolygonSetGL.h
Dummy methods DefineParticle required by the interface added.
[u/mrichter/AliRoot.git] / EVE / Reve / NLTPolygonSetGL.h
1 #ifndef REVE_NLTPolygonSetGL
2 #define REVE_NLTPolygonSetGL
3
4 #include <TGLObject.h>
5
6 namespace Reve {
7
8 class NLTPolygonSetGL : public TGLObject
9 {
10 protected:
11   virtual void DirectDraw(TGLRnrCtx & rnrCtx) const;
12
13 public:
14   NLTPolygonSetGL();
15   virtual  ~NLTPolygonSetGL();
16
17   virtual Bool_t SetModel(TObject* obj, const Option_t* opt=0);
18   virtual Bool_t IgnoreSizeForOfInterest() const { return kTRUE; }
19   virtual void   SetBBox();
20
21   ClassDef(NLTPolygonSetGL,0)  // GL renderer for NLTPolygonSet3D
22 };
23
24 }
25 #endif