Skip to content

Commit

Permalink
[skip-ci] use jsroot #17576
Browse files Browse the repository at this point in the history
  • Loading branch information
couet authored Jan 30, 2025
1 parent c31714f commit 198d727
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion tutorials/hist/hist048_Graphics_candle_hist.C
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/// \notebook
/// Example showing how to combine the various candle plot options.
///
/// \macro_image
/// \macro_image (tcanvas_js)
/// \macro_code
///
/// \date December 2017
Expand Down
2 changes: 1 addition & 1 deletion tutorials/hist/hist049_Graphics_candle_plot.C
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/// \notebook
/// Example of candle plot with 2-D histograms.
///
/// \macro_image
/// \macro_image (tcanvas_js)
/// \macro_code
///
/// \date May 2024
Expand Down
8 changes: 3 additions & 5 deletions tutorials/hist/hist050_Graphics_candle_plot_options.C
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/// \notebook
/// Example showing how to combine the various candle plot options.
///
/// \macro_image
/// \macro_image (tcanvas_js)
/// \macro_code
///
/// \date December 2017
Expand All @@ -26,8 +26,7 @@ void hist050_Graphics_candle_plot_options()
}
for (int i = 1; i < 7; i++) {
c1->cd(i);
char str[16];
sprintf(str, "candlex%d", i);
TString str = TString::Format("candlex%d", i);
TH2I *myhist = (TH2I *)h1->DrawCopy(str);
myhist->SetTitle(str);
}
Expand All @@ -38,8 +37,7 @@ void hist050_Graphics_candle_plot_options()
"301", "1111", "2321", "12111", "112111", "212111", "312111"};
for (int i = 0; i < 15; i++) {
c2->cd(i + 1);
char str[16];
sprintf(str, "candlex(%s)", myopt[i]);
TString str = TString::Format("candlex(%s)", myopt[i]);
TH2I *myhist = (TH2I *)h1->DrawCopy(str);
myhist->SetTitle(str);
}
Expand Down
2 changes: 1 addition & 1 deletion tutorials/hist/hist051_Graphics_candle_plot_stack.C
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/// \notebook
/// Example showing how a THStack with candle plot option.
///
/// \macro_image
/// \macro_image (tcanvas_js)
/// \macro_code
///
/// \date May 2024
Expand Down
2 changes: 1 addition & 1 deletion tutorials/hist/hist052_Graphics_candle_plot_whiskers.C
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/// \notebook
/// Example of candle plot showing the whiskers definition.
///
/// \macro_image
/// \macro_image (tcanvas_js)
/// \macro_output
/// \macro_code
///
Expand Down
2 changes: 1 addition & 1 deletion tutorials/hist/hist053_Graphics_candle_scaled.C
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/// Candle Scaled, illustrates what scaling does on candle and violin charts.
/// Please try to modify the static functions SetScaledCandle and SetScaledViolin
///
/// \macro_image
/// \macro_image (tcanvas_js)
/// \macro_code
///
/// \date February 2023
Expand Down

0 comments on commit 198d727

Please sign in to comment.