]> git.uio.no Git - u/mrichter/AliRoot.git/blame - macros/mkhtml.C
SetChildMomentumRange, SetChildPtRange, SetChildPhiRange, SetChildThetaRange added.
[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;
11 if(macro) {
12 gROOT->LoadMacro(macro);
13 html.Convert(macro,"Example Macro");
14 } else {
4d18ed58 15 gSystem->Load("$(ALICE_ROOT)/lib/tgt_$(ALICE_TARGET)/libRALICE");
fe4da5cc 16 html.MakeAll(force);
17 }
18}