]> git.uio.no Git - u/mrichter/AliRoot.git/blame - macros/mkhtml.C
Using the new altro raw-data format. Removing some obsolete macros.
[u/mrichter/AliRoot.git] / macros / mkhtml.C
CommitLineData
fe4da5cc 1void mkhtml (char *macro=0, Int_t force=0) {
2// to run this macro, you must have the correct .rootrc file
3// in your galice directory.
4// The gAlice classes summary documentation go to directory html
5// The gAlice classes source documentation go to directory html/src
6// The example macros documentation go to directory html/examples
7
8 // gROOT->LoadMacro("loadlibs.C");
9 // loadlibs();
10 THtml html;
0198c392 11 TStopwatch timer;
12 timer.Start();
fe4da5cc 13 if(macro) {
14 gROOT->LoadMacro(macro);
15 html.Convert(macro,"Example Macro");
16 } else {
e779d3dc 17 gSystem->Load("liblhapdf.so"); // Parton density functions
18 gSystem->Load("libEGPythia6.so"); // TGenerator interface
19 gSystem->Load("libpythia6.so"); // Pythia
20 gSystem->Load("libAliPythia6.so"); // ALICE specific implementations
21 gSystem->Load("libRALICE.so");
0f5f32b8 22 html.MakeAll(force,"[A-Z]*");
fe4da5cc 23 }
0198c392 24 timer.Stop();
25 timer.Print();
fe4da5cc 26}