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 <mailto:tbretz@astro.uni-wuerzburg.de>
|
---|
19 | !
|
---|
20 | ! Copyright: MAGIC Software Development, 2000-2002
|
---|
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 | TString sourcedir;
|
---|
38 | sourcedir += "manalysis:";
|
---|
39 | sourcedir += "mbase:";
|
---|
40 | sourcedir += "mcalib:";
|
---|
41 | sourcedir += "mdata:";
|
---|
42 | sourcedir += "mfileio:";
|
---|
43 | sourcedir += "mfilter:";
|
---|
44 | sourcedir += "mgeom:";
|
---|
45 | sourcedir += "mgui:";
|
---|
46 | sourcedir += "mhbase:";
|
---|
47 | sourcedir += "mhist:";
|
---|
48 | sourcedir += "mhistmc:";
|
---|
49 | sourcedir += "mimage:";
|
---|
50 | sourcedir += "mmain:";
|
---|
51 | sourcedir += "mmc:";
|
---|
52 | sourcedir += "mmontecarlo:";
|
---|
53 | sourcedir += "mranforest:";
|
---|
54 | sourcedir += "mraw:";
|
---|
55 | sourcedir += "mreflector:";
|
---|
56 | sourcedir += "mtools:";
|
---|
57 | sourcedir += ".:";
|
---|
58 |
|
---|
59 | html.SetSourceDir(sourcedir);
|
---|
60 | html.SetOutputDir("htmldoc");
|
---|
61 |
|
---|
62 | html.MakeAll(kTRUE);
|
---|
63 |
|
---|
64 | html.SetSourceDir("macros");
|
---|
65 | html.Convert("merpp.C", "MARS - Merging and Preprocessing");
|
---|
66 | html.Convert("readraw.C", "MARS - How To Read A Raw");
|
---|
67 | html.Convert("rootlogon.C", "MARS - rootlogon.C");
|
---|
68 | html.Convert("readCT1.C", "MARS - Read and display CT1 Events");
|
---|
69 | html.Convert("readMagic.C", "MARS - Read and display Magic Events");
|
---|
70 | html.Convert("CT1Hillas.C", "MARS - Calculate CT1 Hillas");
|
---|
71 | html.Convert("MagicHillas.C", "MARS - Calculate Magic Hillas");
|
---|
72 | html.Convert("collarea.C", "MARS - Calculate Collection Area from a MC root file");
|
---|
73 | html.Convert("threshold.C", "MARS - Calculate Energy Threshold from a MC root file");
|
---|
74 | html.Convert("trigrate.C", "MARS - Calculate Trigger Rate from a MC root file");
|
---|
75 | html.Convert("star.C", "MARS - (St)andard (A)nalysis and (R)econstruction");
|
---|
76 | html.Convert("starplot.C", "MARS - Plot parameters from file created with star.C");
|
---|
77 | html.Convert("comprob.C", "MARS - Calculation of composite probabilities for G/H-Seperation");
|
---|
78 | html.Convert("multidimdist.C", "MARS - Calculation of multidimensional distances for G/H-Seperation");
|
---|
79 | html.Convert("multidimdist2.C", "MARS - Calculation of multidimensional distances for G/H-Seperation");
|
---|
80 | html.Convert("estimate.C", "MARS - Shows results from the energy estimation");
|
---|
81 | html.Convert("estfit.C", "MARS - Fits the coefficients of the energy estimator MEnergyEstParam");
|
---|
82 | html.Convert("plot.C", "MARS - Plots 1D mars histogram");
|
---|
83 | html.Convert("plot2.C", "MARS - Plots a 2D mars histogram");
|
---|
84 | html.Convert("starplot.C", "MARS - Plots data from a STAR-file into a mars histogram");
|
---|
85 | html.Convert("testenv.C", "MARS - Example to use TEnv and Mars Eventloops");
|
---|
86 | html.Convert("triglvl2.C", "MARS - Example to use MMcTriggerLvl2 class, using filters and creating histograms");
|
---|
87 | html.Convert("status.C", "MARS - Example to use the online display");
|
---|
88 | }
|
---|