#ifndef ROOT_TH2GL
#define ROOT_TH2GL
#include <TGLObject.h>
class TGLRnrCtx;
class TH2;
#include "TGLPlotPainter.h"
class TH2GL : public TGLObject
{
private:
   TH2GL(const TH2GL&);            
   TH2GL& operator=(const TH2GL&); 
protected:
   TH2                *fM; 
   TGLPlotPainter     *fPlotPainter;
   TGLPlotCoordinates  fCoord;
   virtual void DirectDraw(TGLRnrCtx & rnrCtx) const;
public:
   TH2GL();
   virtual ~TH2GL();
   virtual Bool_t SetModel(TObject* obj, const Option_t* opt=0);
   virtual void   SetBBox();
   virtual Bool_t KeepDuringSmartRefresh() const { return kFALSE; }
   
   
   
   ClassDef(TH2GL, 0) 
}; 
#endif
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.