#ifndef ROOT_TColor
#define ROOT_TColor
/*
<img src="gif/colors.gif">
*/
//End_Html
#ifndef ROOT_TNamed
#include "TNamed.h"
#endif
#ifndef ROOT_TArrayI
#include "TArrayI.h"
#endif
class TColor : public TNamed {
protected:
Int_t fNumber;
private:
Float_t fRed;
Float_t fGreen;
Float_t fBlue;
Float_t fHue;
Float_t fLight;
Float_t fSaturation;
Float_t fAlpha;
static Bool_t fgGrayscaleMode;
static Bool_t fgInitDone;
static TArrayI fgPalette;
void Allocate();
static Float_t HLStoRGB1(Float_t rn1, Float_t rn2, Float_t huei);
public:
TColor();
TColor(Int_t color, Float_t r, Float_t g, Float_t b, const char *name="", Float_t a = 1);
TColor(const TColor &color);
virtual ~TColor();
const char *AsHexString() const;
void Copy(TObject &color) const;
static void CreateColorWheel();
static void CreateColorsGray();
static void CreateColorsCircle(Int_t offset, const char *name, UChar_t *rgb);
static void CreateColorsRectangle(Int_t offset, const char *name, UChar_t *rgb);
static Int_t CreateGradientColorTable(UInt_t Number, Double_t* Stops,
Double_t* Red, Double_t* Green, Double_t* Blue, UInt_t NColors, Float_t alpha=1.);
static Int_t GetColorPalette(Int_t i);
static Int_t GetNumberOfColors();
virtual void GetRGB(Float_t &r, Float_t &g, Float_t &b) const
{ r=GetRed(); g=GetGreen(); b=GetBlue(); }
virtual void GetHLS(Float_t &h, Float_t &l, Float_t &s) const
{ h=GetHue(); l=GetLight(); s=GetSaturation(); }
Int_t GetNumber() const { return fNumber; }
ULong_t GetPixel() const;
Float_t GetRed() const { return IsGrayscale() ? GetGrayscale() : fRed; }
Float_t GetGreen() const { return IsGrayscale() ? GetGrayscale() : fGreen; }
Float_t GetBlue() const { return IsGrayscale() ? GetGrayscale() : fBlue; }
Float_t GetHue() const { return fHue; }
Float_t GetLight() const { return fLight; }
Float_t GetSaturation() const { return IsGrayscale() ? 0 : fSaturation; }
Float_t GetAlpha() const { return fAlpha; }
virtual Float_t GetGrayscale() const { return 0.299f*fRed + 0.587f*fGreen + 0.114f*fBlue; }
virtual void ls(Option_t *option="") const;
virtual void Print(Option_t *option="") const;
virtual void SetAlpha(Float_t a) { fAlpha = a; }
virtual void SetRGB(Float_t r, Float_t g, Float_t b);
static void InitializeColors();
static void HLS2RGB(Float_t h, Float_t l, Float_t s, Float_t &r, Float_t &g, Float_t &b);
static void HLS2RGB(Int_t h, Int_t l, Int_t s, Int_t &r, Int_t &g, Int_t &b);
static void HLStoRGB(Float_t h, Float_t l, Float_t s, Float_t &r, Float_t &g, Float_t &b)
{ TColor::HLS2RGB(h, l, s, r, g, b); }
static void HSV2RGB(Float_t h, Float_t s, Float_t v, Float_t &r, Float_t &g, Float_t &b);
static void RGB2HLS(Float_t r, Float_t g, Float_t b, Float_t &h, Float_t &l, Float_t &s);
static void RGB2HLS(Int_t r, Int_t g, Int_t b, Int_t &h, Int_t &l, Int_t &s);
static void RGBtoHLS(Float_t r, Float_t g, Float_t b, Float_t &h, Float_t &l, Float_t &s)
{ TColor::RGB2HLS(r, g, b, h, l, s); }
static void RGB2HSV(Float_t r, Float_t g, Float_t b, Float_t &h, Float_t &s, Float_t &v);
static Int_t GetColor(const char *hexcolor);
static Int_t GetColor(Float_t r, Float_t g, Float_t b);
static Int_t GetColor(Int_t r, Int_t g, Int_t b);
static Int_t GetColor(ULong_t pixel);
static Int_t GetColorBright(Int_t color);
static Int_t GetColorDark(Int_t color);
static Int_t GetColorTransparent(Int_t color, Float_t a);
static ULong_t Number2Pixel(Int_t ci);
static ULong_t RGB2Pixel(Int_t r, Int_t g, Int_t b);
static ULong_t RGB2Pixel(Float_t r, Float_t g, Float_t b);
static void Pixel2RGB(ULong_t pixel, Int_t &r, Int_t &g, Int_t &b);
static void Pixel2RGB(ULong_t pixel, Float_t &r, Float_t &g, Float_t &b);
static const char *PixelAsHexString(ULong_t pixel);
static void SaveColor(std::ostream &out, Int_t ci);
static Bool_t IsGrayscale();
static void SetGrayscale(Bool_t set = kTRUE);
static void SetPalette(Int_t ncolors, Int_t *colors,Float_t alpha=1.);
ClassDef(TColor,2)
};
enum EColorPalette {kDeepSea=51, kGreyScale=52, kDarkBodyRadiator=53,
kBlueYellow= 54, kRainBow=55, kInvertedDarkBodyRadiator=56,
kBird=57, kCubehelix=58, kGreenRedViolet=59,
kBlueRedYellow=60, kOcean=61, kColorPrintableOnGrey=62,
kAlpine=63, kAquamarine=64, kArmy=65,
kAtlantic=66, kAurora=67, kAvocado=68,
kBeach=69, kBlackBody=70, kBlueGreenYellow=71,
kBrownCyan=72, kCMYK=73, kCandy=74,
kCherry=75, kCoffee=76, kDarkRainBow=77,
kDarkTerrain=78, kFall=79, kFruitPunch=80,
kFuchsia=81, kGreyYellow=82, kGreenBrownTerrain=83,
kGreenPink=84, kIsland=85, kLake=86,
kLightTemperature=87, kLightTerrain=88, kMint=89,
kNeon=90, kPastel=91, kPearl=92,
kPigeon=93, kPlum=94, kRedBlue=95,
kRose=96, kRust=97, kSandyTerrain=98,
kSienna=99, kSolar=100, kSouthWest=101,
kStarryNight=102, kSunset=103, kTemperatureMap=104,
kThermometer=105, kValentine=106, kVisibleSpectrum=107,
kWaterMelon=108, kCool=109, kCopper=110,
kGistEarth=111};
#endif