ROOT logo
// @(#)root/gl:$Id: TH2GL.h 28378 2009-04-28 15:40:53Z matevz $
// Author:  Matevz Tadel, Jun 2007

/*************************************************************************
 * Copyright (C) 1995-2004, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TH2GL
#define ROOT_TH2GL

#include <TGLObject.h>
#include <TGLUtil.h>
#include <TGLAxisPainter.h>

class TGLRnrCtx;
class TH2;
class TAxis;

#include "TGLPlotPainter.h"

class TH2GL : public TGLObject
{
private:
   TH2GL(const TH2GL&);            // Not implemented
   TH2GL& operator=(const TH2GL&); // Not implemented

protected:
   TH2                *fM; // Model object dynamic-casted to TH2.

   TGLPlotPainter     *fPlotPainter;
   TGLPlotCoordinates  fCoord;

public:
   TH2GL();
   virtual ~TH2GL();

   virtual Bool_t SetModel(TObject* obj, const Option_t* opt=0);
   virtual void   SetBBox();
   virtual void   DirectDraw(TGLRnrCtx & rnrCtx) const;

   virtual Bool_t KeepDuringSmartRefresh() const { return kFALSE; }

   // To support two-level selection
   // virtual Bool_t SupportsSecondarySelect() const { return kTRUE; }
   // virtual void ProcessSelection(UInt_t* ptr, TGLViewer*, TGLScene*);

   ClassDef(TH2GL, 0); // GL renderer for TH2 and TH3.
}; // endclass TH2GL

#endif
 TH2GL.h:1
 TH2GL.h:2
 TH2GL.h:3
 TH2GL.h:4
 TH2GL.h:5
 TH2GL.h:6
 TH2GL.h:7
 TH2GL.h:8
 TH2GL.h:9
 TH2GL.h:10
 TH2GL.h:11
 TH2GL.h:12
 TH2GL.h:13
 TH2GL.h:14
 TH2GL.h:15
 TH2GL.h:16
 TH2GL.h:17
 TH2GL.h:18
 TH2GL.h:19
 TH2GL.h:20
 TH2GL.h:21
 TH2GL.h:22
 TH2GL.h:23
 TH2GL.h:24
 TH2GL.h:25
 TH2GL.h:26
 TH2GL.h:27
 TH2GL.h:28
 TH2GL.h:29
 TH2GL.h:30
 TH2GL.h:31
 TH2GL.h:32
 TH2GL.h:33
 TH2GL.h:34
 TH2GL.h:35
 TH2GL.h:36
 TH2GL.h:37
 TH2GL.h:38
 TH2GL.h:39
 TH2GL.h:40
 TH2GL.h:41
 TH2GL.h:42
 TH2GL.h:43
 TH2GL.h:44
 TH2GL.h:45
 TH2GL.h:46
 TH2GL.h:47
 TH2GL.h:48
 TH2GL.h:49
 TH2GL.h:50
 TH2GL.h:51
 TH2GL.h:52
 TH2GL.h:53
 TH2GL.h:54