|
To include plots with HTML code only, use "OBJECT" tag.
Required
"classID" attribute of this tag sets AIDA type of the data.
Required "data" parameter specifies JAS3 tree path to the data for the plot.
All other parameters are optional and can be omitted.
Note: In general, tags,
parameter names and values are NOT case-sensitive. Exceptions are:
value of "classID" attribute and value of "data" parameter - you need to give
exact class name and exact path to the plot data.
<OBJECT classID="hep.aida.IHistogram1D"> <PARAM name="data" value="Histograms/IR2LiveL3/OdfL3Mon Total
Size of Event Contribution">
</OBJECT>
....................
<OBJECT classID="hep.aida.IHistogram1D"> <PARAM name="data" value="Histograms/IR2LiveL3/OdfL3Mon
DataFlow Damage All Events"> <PARAM name="yAxisLogarithmic" value="true"> <PARAM name="yMin" value="0.1"> <PARAM name="yMax" value="10000"> <PARAM name="histogramBarsFilled" value="true"> <PARAM name="histogramBarColor" value="0xff4040">
</OBJECT>
- List of possible AIDA data types:
- 1D Historgam:
hep.aida.IHistogram1D
- 2D Historgam:
hep.aida.IHistogram2D
- Scatter Plot:
hep.aida.IDataPointSet
- List of possible parameters:
| Parameter name |
type |
Default Value |
Explanation |
| xMin, xMax |
double |
Defined by Plotter |
Min and Max values for the X axis |
| yMin, yMax |
double |
Defined by Plotter |
Min and Max values for the Y axis |
| xAxisAllowSuppressedZero |
boolean |
true |
If "false", force X axis to start at 0 |
| yAxisAllowSuppressedZero |
boolean |
true |
If "false", forcesY axis to start at 0 |
| xAxisLogarithmic |
boolean |
false |
If "true" set Logarithmic X axis |
| yAxisLogarithmic |
boolean |
false |
If "true" set Logarithmic Y axis |
| |
|
|
|
| plotForegroundColor |
Color * |
black |
Plot foreground color |
| plotBackgroundColor |
Color * |
white |
Plot Background color |
| dataAreaColor |
Color * |
white |
Plot data area color. |
| plotWidth |
integer |
200 |
Plot width (in Pixels) |
| plotHeight |
integer |
200 |
Plot height (in Pixels) |
| |
|
|
|
| For 1D plots only: |
|
|
|
| showDataPoints |
boolean |
false |
If "true", show data points |
| dataPointSize |
integer |
5 |
Data point size |
| dataPointStyle |
POINT_STYLE ** |
DOT |
Data point style (shape) |
| showLineBetweenPoints |
boolean |
false |
If "true", connect data points with straight lines |
| |
|
|
|
| showErrorBars |
boolean |
false |
If "true", show error bars |
| errorBarColor |
Color * |
black |
Error bar color |
| |
|
|
|
| showHistogramBars |
boolean |
true |
Show histogram bars |
| lineColor |
Color * |
black |
Histogram bars outline color. Same color is used for
line between points if showLineBetweenPoints="true" |
| histogramBarsFilled |
boolean |
false |
If "true", histogram bars are filled, evaluated only if
showHistogramBars="true" |
| histogramBarColor |
Color * |
black |
Histogram bar fill color |
| |
|
|
|
| For 2D plots only: |
|
|
|
| histStyle |
2D_BIN_STYLE *** |
STYLE_BOX |
Style of drawing 2D bins |
| shapeColor |
Color * |
black |
Color of 2D bins, not used if histStyle="STYLE_COLORMAP" |
| colorMap |
COLORMAP_STYLE **** |
COLORMAP_WARM |
What style color map to use |
| startDataColor |
Color * |
WHITE |
Color of MAX value, used only if colorMap="COLORMAP_USERDEFINED" |
| endDataColor |
Color * |
BLACK |
Color of MAX value, used only if colorMap="COLORMAP_USERDEFINED" |
* Color - color can be set as 24 bit RGB HEX value, e.g. "0xff4040",
or in words. Possible word values are: WHITE, LIGHT_GRAY, GRAY, DARK_GRAY,
BLACK, RED, PINK, ORANGE, YELLOW, GREEN, MAGENTA, CYAN, BLUE
** POINT_STYLE - Style of Data Point. Possible values are: DOT, BOX,
TRIANGLE, DIAMOND, STAR, VERT_LINE, HORIZ_LINE, CROSS, CIRCLE, SQUARE
*** 2D_BIN_STYLE - Style of drawing 2D bins. Possible values are:
STYLE_BOX, STYLE_ELLIPSE, STYLE_COLORMAP
**** COLORMAP_STYLE - Style of the color map. Possible values are:
COLORMAP_WARM, COLORMAP_COOL, COLORMAP_THERMAL, COLORMAP_RAINBOW,
COLORMAP_GRAYSCALE, COLORMAP_USERDEFINED
Maintained by Victor Serbo,
serbo@slac.stanford.edu
Last Modified May 26, 2006
|