https://github.com/root-project/root
Raw File
Tip revision: 476c0426f35f3f15f6b597b4fcca3ec8d5081850 authored by Unknown Author on 03 September 2004, 10:43:50 UTC
This commit was manufactured by cvs2svn to create tag 'v4-00-08c'.
Tip revision: 476c042
test2html.cxx
// @(#)root/test:$Name$:$Id$
// 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