Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Modified tutorials to create notebooks from them
  • Loading branch information
pmiquelm committed Jul 14, 2016
commit 201a991a151ae1e8b3aa24cab6e6489ce45ba288
4 changes: 2 additions & 2 deletions tutorials/graphs/approx.C
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/// \notebook
/// \file
/// \ingroup tutorial_graphs
/// Macro to test interpolation function Approx
Expand All @@ -10,8 +11,7 @@
TCanvas *vC1;
TGraph *grxy, *grin, *grout;

void DrawSmooth(Int_t pad, const char *title, const char *xt,
const char *yt)
void DrawSmooth(Int_t pad, const char *title, const char *xt, const char *yt)
{
vC1->cd(pad);
TH1F *vFrame = gPad->DrawFrame(0,0,15,150);
Expand Down
4 changes: 3 additions & 1 deletion tutorials/graphs/bent.C
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/// \notebook
/// \file
/// \ingroup tutorial_graphs
/// Bent error bars
Expand All @@ -7,7 +8,8 @@
///
/// \author Olivier Couet

void bent() {
void bent()
{
const Int_t n = 10;
Double_t x[n] = {-0.22, 0.05, 0.25, 0.35, 0.5, 0.61,0.7,0.85,0.89,0.95};
Double_t y[n] = {1,2.9,5.6,7.4,9,9.6,8.7,6.3,4.5,1};
Expand Down
1 change: 1 addition & 0 deletions tutorials/graphs/exclusiongraph2.C
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/// \notebook
/// \file
/// \ingroup tutorial_graphs
/// Draw several graphs with an exclusion zones.
Expand Down