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

Last change on this file since 3192 was 2846, checked in by rico, 21 years ago
*** empty log message ***
File size: 4.2 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
25void dohtml()
26{
27 //
28 // don't forget that the shared object must have been loaded
29 //
30
31 //
32 // Do not print 'Info' messages from the root system such like
33 // TCanvas::Print
34 //
35 gErrorIgnoreLevel=kWarning;
36
37 //
38 // create the html document class
39 //
40 THtml html;
41
42 TString sourcedir;
43 sourcedir += "manalysis:";
44 sourcedir += "mbase:";
45 sourcedir += "mcamera:";
46 sourcedir += "mcalib:";
47 sourcedir += "mdata:";
48 sourcedir += "mfileio:";
49 sourcedir += "mfilter:";
50 sourcedir += "mgeom:";
51 sourcedir += "mgui:";
52 sourcedir += "mhbase:";
53 sourcedir += "mhist:";
54 sourcedir += "mhistmc:";
55 sourcedir += "mimage:";
56 sourcedir += "mmain:";
57 sourcedir += "mmc:";
58 sourcedir += "mmontecarlo:";
59 sourcedir += "mpointing:";
60 sourcedir += "mranforest:";
61 sourcedir += "mraw:";
62 sourcedir += "mreflector:";
63 sourcedir += "mreport:";
64 sourcedir += "mtools:";
65 sourcedir += ".:";
66
67 html.SetSourceDir(sourcedir);
68 html.SetOutputDir("htmldoc");
69
70 html.MakeAll(kTRUE);
71
72 html.SetSourceDir("macros");
73 html.Convert("merpp.C", "MARS - Merging and Preprocessing");
74 html.Convert("readraw.C", "MARS - How To Read A Raw");
75 html.Convert("rootlogon.C", "MARS - rootlogon.C");
76 html.Convert("readCT1.C", "MARS - Read and display CT1 Events");
77 html.Convert("readMagic.C", "MARS - Read and display Magic Events");
78 html.Convert("CT1Hillas.C", "MARS - Calculate CT1 Hillas");
79 html.Convert("MagicHillas.C", "MARS - Calculate Magic Hillas");
80 html.Convert("collarea.C", "MARS - Calculate Collection Area from a MC root file");
81 html.Convert("threshold.C", "MARS - Calculate Energy Threshold from a MC root file");
82 html.Convert("trigrate.C", "MARS - Calculate Trigger Rate from a MC root file");
83 html.Convert("star.C", "MARS - (St)andard (A)nalysis and (R)econstruction");
84 html.Convert("starplot.C", "MARS - Plot parameters from file created with star.C");
85 html.Convert("comprob.C", "MARS - Calculation of composite probabilities for G/H-Seperation");
86 html.Convert("multidimdist.C", "MARS - Calculation of multidimensional distances for G/H-Seperation");
87 html.Convert("multidimdist2.C", "MARS - Calculation of multidimensional distances for G/H-Seperation");
88 html.Convert("estimate.C", "MARS - Shows results from the energy estimation");
89 html.Convert("estfit.C", "MARS - Fits the coefficients of the energy estimator MEnergyEstParam");
90 html.Convert("plot.C", "MARS - Plots 1D mars histogram");
91 html.Convert("plot2.C", "MARS - Plots a 2D mars histogram");
92 html.Convert("starplot.C", "MARS - Plots data from a STAR-file into a mars histogram");
93 html.Convert("testenv.C", "MARS - Example to use TEnv and Mars Eventloops");
94 html.Convert("triglvl2.C", "MARS - Example to use MMcTriggerLvl2 class, using filters and creating histograms");
95 html.Convert("status.C", "MARS - Example to use the online display");
96 html.Convert("calibration.C", "MARS - Example to use the calibration");
97 html.Convert("pedvsevent.C", "MARS - Example to use MPedCalcPedRun");
98 html.Convert("pedphotcalc.C", "MARS - Example to use MPedPhotCalc");
99}
100
101
102
Note: See TracBrowser for help on using the repository browser.