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