Example showing how to combine the various candle plot options.
void candlehisto()
{
TH2I *h1 =
new TH2I(
"h1",
"Sin", 18, 0, 360, 100, -1.5, 1.5);
float myRand;
for (int i = 0; i < 360; i+= 10) {
for (int j = 0; j < 100; j++) {
myRand = rand->
Gaus(
sin(i * 3.14 / 180), 0.2);
}
}
for (int i = 1; i < 7; i++) {
}
for (int i = 1; i < 3; i++) {
}
TCanvas *c3 =
new TCanvas(
"c3",
"Playing with candle and violin-options", 800, 600);
TString myopt[6] = {
"1000000",
"2000000",
"3000000",
"1112111",
"112111",
"112111"};
for (int i = 0; i < 6; i++) {
if (i == 4) {
}
if (i == 5) {
}
}
}
- Author
- Georg Troska
Definition in file candlehisto.C.