Revision 180edf636855cd63af5828d752ae1d73caaf12a9 authored by Rene Brun on 19 September 2006, 12:38:03 UTC, committed by Rene Brun on 19 September 2006, 12:38:03 UTC

git-svn-id: http://root.cern.ch/svn/root/trunk@16296 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent 829e8d8
Raw File
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