1 | /* ======================================================================== *\
|
---|
2 | !
|
---|
3 | ! *
|
---|
4 | ! * This file is part of MARS, the MAGIC Analysis and Reconstruction
|
---|
5 | ! * Software. It is distributed to you in the hope that it can be a useful
|
---|
6 | ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
---|
7 | ! * It is distributed WITHOUT ANY WARRANTY.
|
---|
8 | ! *
|
---|
9 | ! * Permission to use, copy, modify and distribute this software and its
|
---|
10 | ! * documentation for any purpose is hereby granted without fee,
|
---|
11 | ! * provided that the above copyright notice appear in all copies and
|
---|
12 | ! * that both that copyright notice and this permission notice appear
|
---|
13 | ! * in supporting documentation. It is provided "as is" without express
|
---|
14 | ! * or implied warranty.
|
---|
15 | ! *
|
---|
16 | !
|
---|
17 | !
|
---|
18 | ! Author(s): Thomas Bretz 12/2000 (tbretz@uni-sw.gwdg.de)
|
---|
19 | !
|
---|
20 | ! Copyright: MAGIC Software Development, 2000-2001
|
---|
21 | !
|
---|
22 | !
|
---|
23 | \* ======================================================================== */
|
---|
24 |
|
---|
25 |
|
---|
26 | void dohtml()
|
---|
27 | {
|
---|
28 | //
|
---|
29 | // don't forget that the shared object must have been loaded
|
---|
30 | //
|
---|
31 |
|
---|
32 | //
|
---|
33 | // create the html document class
|
---|
34 | //
|
---|
35 | THtml html;
|
---|
36 |
|
---|
37 | html.SetOutputDir("htmldoc");
|
---|
38 | html.SetSourceDir(".:mbase:mraw:mgui:manalysis:mdatacheck:mmain:meventdisp:mmc:mmontecarlo:mhist:mfilter");
|
---|
39 |
|
---|
40 | html.MakeAll(kTRUE);
|
---|
41 |
|
---|
42 | html.SetSourceDir("macros");
|
---|
43 | html.Convert("merpp.C", "MARS - Merging and Preprocessing");
|
---|
44 | html.Convert("readraw.C", "MARS - How To Read A Raw");
|
---|
45 | html.Convert("rootlogon.C", "MARS - rootlogon.C");
|
---|
46 | html.Convert("readCT1.C", "MARS - Read and display CT1 Events");
|
---|
47 | html.Convert("readMagic.C", "MARS - Read and display Magic Events");
|
---|
48 | html.Convert("CT1Hillas.C", "MARS - Calculate CT1 Hillas");
|
---|
49 | html.Convert("MagicHillas.C", "MARS - Calculate Magic Hillas");
|
---|
50 | html.Convert("collarea.C", "MARS - Calculate Collection Area from a MC root file");
|
---|
51 | html.Convert("threshold.C", "MARS - Calculate Energy Threshold from a MC root file");
|
---|
52 | html.Convert("trigrate.C", "MARS - Calculate Trigger Rate from a MC root file");
|
---|
53 | html.Convert("star.C", "MARS - (St)andard (A)nalysis and (R)econstruction");
|
---|
54 | html.Convert("comprob.C", "MARS - Calculation of composite probabilities for G/H-Seperation");
|
---|
55 | html.Convert("multidimdist.C", "MARS - Calculation of multidimensional distances for G/H-Seperation");
|
---|
56 | }
|
---|