Changeset 8837 for trunk/MagicSoft/Cosy/macros
- Timestamp:
- 01/27/08 17:52:41 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/macros/dohtml.C
r1139 r8837 16 16 ! 17 17 ! 18 ! Author(s): Thomas Bretz 12/2000 (tbretz@uni-sw.gwdg.de)18 ! Author(s): Thomas Bretz 12/2000 <mailto:tbretz@astro.uni-wuerzburg.de> 19 19 ! 20 ! Copyright: MAGIC Software Development, 2000-200 120 ! Copyright: MAGIC Software Development, 2000-2008 21 21 ! 22 22 ! 23 23 \* ======================================================================== */ 24 24 25 /////////////////////////////////////////////////////////////////////////// 26 // 27 // dohtml.C 28 // ======== 29 // 30 // This is a service macro used to create the html-documentation from 31 // source code (THtml) 32 // 33 // Add here all directories in which files are stored from which the 34 // documentation should be created an add all macros which should be 35 // converted to HTML. 36 // 37 /////////////////////////////////////////////////////////////////////////// 25 38 26 39 void dohtml() … … 31 44 32 45 // 46 // Do not print 'Info' messages from the root system such like 47 // TCanvas::Print 48 // 49 gErrorIgnoreLevel=kWarning; 50 51 // 33 52 // create the html document class 34 53 // 35 54 THtml html; 36 55 56 TString sourcedir; 57 sourcedir += "base:"; 58 sourcedir += "candrv:"; 59 sourcedir += "caos:"; 60 sourcedir += "catalog:"; 61 sourcedir += "devdrv:"; 62 sourcedir += "gui:"; 63 sourcedir += "main:"; 64 // sourcedir += "mvideo:"; 65 sourcedir += "tcpip:"; 66 sourcedir += "tpoint:"; 67 sourcedir += "videodev:"; 68 sourcedir += ".:"; 69 70 html.SetSourceDir(sourcedir); 37 71 html.SetOutputDir("htmldoc"); 38 html.SetSourceDir("candrv");39 72 40 73 html.MakeAll(kTRUE); 41 /* 74 42 75 html.SetSourceDir("macros"); 43 html.Convert("merpp.C", "MARS - Merging and Preprocessing"); 44 html.Convert("readraw.C", "MARS - How To Read A Raw"); 45 html.Convert("rootlogon.C", "MARS - rootlogon.C"); 46 html.Convert("readCT1.C", "MARS - Read and display CT1 Events"); 47 html.Convert("readMagic.C", "MARS - Read and display Magic Events"); 48 html.Convert("CT1Hillas.C", "MARS - Calculate CT1 Hillas"); 49 html.Convert("MagicHillas.C", "MARS - Calculate Magic Hillas"); 50 html.Convert("collarea.C", "MARS - Calculate Collection Area from a MC root file"); 51 html.Convert("threshold.C", "MARS - Calculate Energy Threshold from a MC root file"); 52 html.Convert("trigrate.C", "MARS - Calculate Trigger Rate from a MC root file"); 53 */ 76 // html.Convert("merpp.C", "MARS - Merging and Preprocessing"); 54 77 }
Note:
See TracChangeset
for help on using the changeset viewer.