rootlogon.C
1 {
2  gSystem->Load("build/libRootFftwWrapper.so");
3 
4 
5  const Int_t NRGBs = 5;
6  const Int_t NCont = 255;
7  Double_t stops[NRGBs] = { 0.00, 0.34, 0.61, 0.84, 1.00 };
8  Double_t red[NRGBs] = { 0.00, 0.00, 0.87, 1.00, 0.51 };
9  Double_t green[NRGBs] = { 0.00, 0.81, 1.00, 0.20, 0.00 };
10  Double_t blue[NRGBs] = { 0.51, 1.00, 0.12, 0.00, 0.00 };
11  TColor::CreateGradientColorTable(NRGBs, stops, red, green, blue, NCont);
12  gStyle->SetNumberContours(NCont);
13 }