Logo ROOT   6.10/09
Reference Guide
TEveRGBAPaletteOverlay.h
Go to the documentation of this file.
1 // @(#)root/eve:$Id$
2 // Author: Alja Mrak Tadel 2012
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TEveRGBAPaletteOverlay
13 #define ROOT_TEveRGBAPaletteOverlay
14 
15 #include "TAxis.h"
16 #include "TGLOverlay.h"
17 #include "TGLAxisPainter.h"
18 
19 class TEveRGBAPalette;
20 
22 {
23 private:
24  TEveRGBAPaletteOverlay(const TEveRGBAPaletteOverlay&); // Not implemented
25  TEveRGBAPaletteOverlay& operator=(const TEveRGBAPaletteOverlay&); // Not implemented
26 
27 protected:
31 
32  Float_t fPosX; // x position
33  Float_t fPosY; // y position
34  Float_t fWidth; // width
35  Float_t fHeight; // height
36 
37 public:
39  Float_t width, Float_t height);
41 
42  virtual void Render(TGLRnrCtx& rnrCtx);
43 
44  TAxis& RefAxis() { return fAxis; }
46 
47 
48  void SetPosition(Float_t x, Float_t y) { fPosX = x; fPosY = y; }
49  void SetSize(Float_t w, Float_t h) { fWidth = w; fHeight = h; }
50 
51  ClassDef(TEveRGBAPaletteOverlay, 0); // Draws TEveRGBAPalette as GL overlay.
52 };
53 
54 #endif
The TGLRnrCtx class aggregates data for a given redering context as needed by various parts of the RO...
Definition: TGLRnrCtx.h:40
A generic, speed-optimised mapping from value to RGBA color supporting different wrapping and range t...
TGLAxisPainter & RefAxisPainter()
float Float_t
Definition: RtypesCore.h:53
TH1 * h
Definition: legend2.C:5
Description of TEveRGBAPaletteOverlay.
An overlay element.
Definition: TGLOverlay.h:22
Double_t x[n]
Definition: legend1.C:17
#define ClassDef(name, id)
Definition: Rtypes.h:297
virtual void Render(TGLRnrCtx &rnrCtx)
Render the overlay.
Class to manage histogram axis.
Definition: TAxis.h:30
TEveRGBAPaletteOverlay & operator=(const TEveRGBAPaletteOverlay &)
void SetPosition(Float_t x, Float_t y)
Double_t y[n]
Definition: legend1.C:17
TEveRGBAPaletteOverlay(const TEveRGBAPaletteOverlay &)
void SetSize(Float_t w, Float_t h)