swh:1:snp:af87cd67498ef4fe47c76ed3e7caffe5b61facaf
Raw File
Tip revision: ef5a2cde47927e6f48e4f57b4e4ce680910dfd29 authored by Unknown Author on 16 May 2000, 17:00:59 UTC
This commit was manufactured by cvs2svn to create tag 'v2-24-05'.
Tip revision: ef5a2cd
test2html.cxx
//*CMZ :  1.03/09 09/12/97  21.37.21  by  Fons Rademakers
//*-- Author :    Rene Brun   23/08/96
{
   // this macro can be called from an interactive ROOT session via the command:
   //      Root > .x test2html.cxx
   // It generates the html files for some of the ROOT test programs.

   gROOT.Reset();
   new THtml();   // ctor sets gHtml
   gHtml.SetSourceDir(".");
   gHtml.Convert("Event.cxx","Creation of a ROOT Tree");
   gHtml.Convert("tcollex.cxx","Example of use of collection classes");
   gHtml.Convert("tstring.cxx","Example of use of the TString classes");
   gHtml.Convert("hsimple.cxx","A simple program making histograms and ntuples");
   gHtml.Convert("minexam.cxx","An example of use of the minimization class TMinuit");
}
back to top