https://github.com/root-project/root
Raw File
Tip revision: 7af9cdc262b7a0cf2679a0df6c639c93656958c0 authored by Axel Naumann on 06 November 2023, 16:45:30 UTC
[foundation] Update version file to 6.30.01: dev phase for upcoming patch release.
Tip revision: 7af9cdc
test2html.cxx
// @(#)root/test:$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