]> git.uio.no Git - u/mrichter/AliRoot.git/blob - macros/mkhtml.C
New task to check TPC-ITS track prolongation eff with cosmics
[u/mrichter/AliRoot.git] / macros / mkhtml.C
1 void 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;
11   TStopwatch timer;
12   timer.Start();
13   if(macro) {
14     gROOT->LoadMacro(macro);
15     html.Convert(macro,"Example Macro");
16   } else {
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");
22     html.MakeAll(force,"[A-Z]*");
23   }
24   timer.Stop();
25   timer.Print();
26 }