Skip to content
Snippets Groups Projects
Commit a459f11c authored by Olivier Couet's avatar Olivier Couet
Browse files

THistpainter

git-svn-id: http://root.cern.ch/svn/root/trunk@47843 27541ba8-7e3a-0410-8455-c3a389f83636
parent 33f7cb77
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,22 @@ Implement in THistPainter::GetObjectInfo the case of TProfile and TProfile2D to
each bin. Disable the printing of the bin information for TH3, since it is not currently possible to retrieve the
3d bin number from the pixel coordinate.
</li>
<li>
Fit parameters with very long name destroyed the stats display. This is now fixed.
<br>
Example:
<pre>
{
gStyle->SetOptFit(111);
TH1F *hist = new TH1F("hist","hist",100,-5,5);
TF1 *fit = new TF1("fit","gaus",-5,5);
fit->SetParName(2,"Parameter with very very very very long name");
hist->FillRandom("gaus",5000);
hist->Draw();
hist->Fit(fit);
}
</pre>
</li>
</ul>
......@@ -109,4 +125,4 @@ Info in <TF1::SaveAs>: cc file: f1.cc has been generated
(double)8.10019368181367980e+01
</pre>
</li>
</ul>
\ No newline at end of file
</ul>
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