source: trunk/MagicSoft/Mars/macros/dohtml.C@ 1734

Last change on this file since 1734 was 1650, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 3.3 KB
Line 
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
26void 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 += "mdata:";
41 sourcedir += "mdatacheck:";
42 sourcedir += "meventdisp:";
43 sourcedir += "mfileio:";
44 sourcedir += "mfilter:";
45 sourcedir += "mgeom:";
46 sourcedir += "mgui:";
47 sourcedir += "mhist:";
48 sourcedir += "mmain:";
49 sourcedir += "mmc:";
50 sourcedir += "mmontecarlo:";
51 sourcedir += "mraw:";
52 sourcedir += "mtools:";
53 sourcedir += ".:";
54
55 html.SetSourceDir(sourcedir);
56 html.SetOutputDir("htmldoc");
57
58 html.MakeAll(kTRUE);
59
60 html.SetSourceDir("macros");
61 html.Convert("merpp.C", "MARS - Merging and Preprocessing");
62 html.Convert("readraw.C", "MARS - How To Read A Raw");
63 html.Convert("rootlogon.C", "MARS - rootlogon.C");
64 html.Convert("readCT1.C", "MARS - Read and display CT1 Events");
65 html.Convert("readMagic.C", "MARS - Read and display Magic Events");
66 html.Convert("CT1Hillas.C", "MARS - Calculate CT1 Hillas");
67 html.Convert("MagicHillas.C", "MARS - Calculate Magic Hillas");
68 html.Convert("collarea.C", "MARS - Calculate Collection Area from a MC root file");
69 html.Convert("threshold.C", "MARS - Calculate Energy Threshold from a MC root file");
70 html.Convert("trigrate.C", "MARS - Calculate Trigger Rate from a MC root file");
71 html.Convert("star.C", "MARS - (St)andard (A)nalysis and (R)econstruction");
72 html.Convert("starplot.C", "MARS - Plot parameters from file created with star.C");
73 html.Convert("comprob.C", "MARS - Calculation of composite probabilities for G/H-Seperation");
74 html.Convert("multidimdist.C", "MARS - Calculation of multidimensional distances for G/H-Seperation");
75 html.Convert("multidimdist2.C", "MARS - Calculation of multidimensional distances for G/H-Seperation");
76 html.Convert("estimate.C", "MARS - Shows results from the energy estimation");
77 html.Convert("estfit.C", "MARS - Fits the coefficients of the energy estimator MEnergyEstParam");
78 html.Convert("plot.C", "MARS - Plots 1D mars histogram");
79 html.Convert("plot2.C", "MARS - Plots a 2D mars histogram");
80 html.Convert("starplot.C", "MARS - Plots data from a STAR-file into a mars histogram");
81}
Note: See TracBrowser for help on using the repository browser.