Skip to content
Snippets Groups Projects
Commit da694d1b authored by Olivier Couet's avatar Olivier Couet
Browse files
git-svn-id: http://root.cern.ch/svn/root/trunk@48505 27541ba8-7e3a-0410-8455-c3a389f83636
parent 97290a64
No related branches found
No related tags found
No related merge requests found
...@@ -102,6 +102,18 @@ Now just set the new correct binning on the previously existing histogram. ...@@ -102,6 +102,18 @@ Now just set the new correct binning on the previously existing histogram.
</li> </li>
</ul> </ul>
<h3>TH1</h3>
<ul>
<li>
The following code should produce a plot. It did not.
<pre>
TH1F* h=new TH1F("hist", "histogram", 10, 0, 3);
h->FillRandom("gaus");
h->Draw("same");
</pre>
</li>
</ul>
<h3>TGraph2D</h3> <h3>TGraph2D</h3>
<ul> <ul>
<li> <li>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment