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

Last change on this file since 971 was 971, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 2.1 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 (tbretz@uni-sw.gwdg.de)
19!
20! Copyright: MAGIC Software Development, 2000-2001
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 MHtml html;
36
37 html.SetOutputDir("htmldoc");
38 html.SetSourceDir(".:mbase:mraw:mgui:manalysis:mdatacheck:mmain:meventdisp:mmc:mmontecarlo:mhist");
39 html.SetXwho("http://hegra1.mppmu.mpg.de/MAGICWeb/collaborators.html?");
40
41 html.MakeAll(kTRUE);
42
43 html.SetSourceDir("macros");
44 html.Convert("merpp.C", "MARS - Merging and Preprocessing");
45 html.Convert("readraw.C", "MARS - How To Read A Raw");
46 html.Convert("rootlogon.C", "MARS - rootlogon.C");
47 html.Convert("readCT1.C", "MARS - Read and display CT1 Events");
48 html.Convert("readMagic.C", "MARS - Read and display Magic Events");
49 html.Convert("CT1Hillas.C", "MARS - Calculate CT1 Hillas");
50 html.Convert("MagicHillas.C", "MARS - Calculate Magic Hillas");
51 html.Convert("collarea.C", "MARS - Calculate Collection Area from a MC root file");
52 html.Convert("threshold.C", "MARS - Calculate Energy Threshold from a MC root file");
53 html.Convert("trigrate.C", "MARS - Calculate Trigger Rate from a MC root file");
54}
Note: See TracBrowser for help on using the repository browser.