Go to the source code of this file.
Namespaces | |
| namespace | evd |
Classes | |
| class | evd::ColorScale |
| Build an association between a numerical range and a ROOT color index for use in, eg., the event display. More... | |
Enumerations | |
| enum | _color_scales { kRainbow, kColdToHot, kHeatedObject, kReds, kGreens, kBlues, kGeographic, kCustom } |
| The list of default color options. More... | |
| enum | _scale_options { kLinear, kLog, kSqrt } |
| How to scale between low and high ranges. More... | |
Definition in file ColorScale.h.
|
|
The list of default color options.
Definition at line 14 of file ColorScale.h. 00014 {
00015 kRainbow,
00016 kColdToHot,
00017 kHeatedObject,
00018 kReds,
00019 kGreens,
00020 kBlues,
00021 kGeographic,
00022 kCustom
00023 };
|
|
|
How to scale between low and high ranges.
Definition at line 26 of file ColorScale.h. 00026 {
00027 kLinear,
00028 kLog,
00029 kSqrt
00030 };
|
1.3.9.1