]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RALICE/macros/makedocs.cc
07-nov-2005 NvE Macro makedocs.cc in directory /macros modified (i.e. ";" changed...
[u/mrichter/AliRoot.git] / RALICE / macros / makedocs.cc
CommitLineData
aa18d98a 1////////////////////////////////////////////////////////////////////////
2// ROOT macro to produce the documentation of all the classes that are
3// contained in the RALICE framework.
4//
5// To run this macro, just issue the command ($ means command prompt) :
6//
7// $ root -b -q makedocs.cc >docs.log
8//
9// The html documentation will be located in the RALICE/htmldoc
10// directory and the produced log messages in the file docs.log
11// in the current RALICE/macros directory.
12//
13// The class index in the html documentation can be accessed directly
14// via the html link User_Index.html in RALICE/htmldoc.
15//
16// Note : All necessary libraries have to be available for the classes
17// for which the documentation is requested before running
18// this macro.
19//
20//--- Author : NvE 20-oct-2005 Utrecht University
21////////////////////////////////////////////////////////////////////////
22{
23 gSystem->Load("ralice");
24 gSystem->Load("icepack");
25 gSystem->Load("iceconvert");
26 gSystem->Load("rwa98");
27
28 gEnv->SetValue("Root.Html.Description","///////////");
29 gEnv->SetValue("Root.Html.Author","//--- Author:");
30 gEnv->SetValue("Root.Html.LastUpdate","//- Modified:");
31 gEnv->SetValue("Root.Html.OutputDir","../htmldoc/");
32
33 THtml q;
487c01f3 34 q.SetSourceDir("..:../icepack:../icepack/iceconvert:../wa98");
aa18d98a 35
36 q.MakeAll();
37}