Changeset 8837 for trunk/MagicSoft


Ignore:
Timestamp:
01/27/08 17:52:41 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/.rootrc

    r1139 r8837  
    4242
    4343Root.Html.Root:              http://root.cern.ch/root/htmldoc/
    44 Root.Html.HomePage:          http://magic.uni-sw.gwdg.de/stesy/
    45 Root.Html.SearchEngine:      http://magic.uni-sw.gwdg.de/mars/search.html
     44Root.Html.HomePage:          http://magic.astro.uni-wuerzburg.de/mars/
     45Root.Html.SearchEngine:      http://magic.astro.uni-wuerzburg.de/mars/search.html
     46Root.Html.ViewCVS:           http://www.astro.uni-wuerzburg.de/viewcvs/
     47
     48#############################################################################
     49#                                                                           #
     50# Some default changes                                                      #
     51#                                                                           #
     52#############################################################################
     53
     54#Canvas.HighLightColor:  3
     55#Canvas.MoveOpaque:      0
     56#Canvas.ResizeOpaque:    0
     57Canvas.ShowEventStatus: Yes
     58#Canvas.ShowToolBar:     Yes
     59#Canvas.ShowEditor:      Yes
     60#Canvas.AutoExec:        No
  • trunk/MagicSoft/Cosy/Changelog

    r8835 r8837  
    11                                                                  -*-*- END -*-*-
     2
     3 2008/01/27 Thomas Bretz
     4
     5   * .rootrc:
     6     - updated to the one of Mars
     7
     8   * macros/dohtml.C:
     9     - added
     10
     11
    212
    313 2008/01/24 Thomas Bretz
  • trunk/MagicSoft/Cosy/macros/dohtml.C

    r1139 r8837  
    1616!
    1717!
    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>
    1919!
    20 !   Copyright: MAGIC Software Development, 2000-2001
     20!   Copyright: MAGIC Software Development, 2000-2008
    2121!
    2222!
    2323\* ======================================================================== */
    2424
     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///////////////////////////////////////////////////////////////////////////
    2538
    2639void dohtml()
     
    3144
    3245    //
     46    // Do not print 'Info' messages from the root system such like
     47    // TCanvas::Print
     48    //
     49    gErrorIgnoreLevel=kWarning;
     50
     51    //
    3352    //   create the html document class
    3453    //
    3554    THtml html;
    3655
     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);
    3771    html.SetOutputDir("htmldoc");
    38     html.SetSourceDir("candrv");
    3972
    4073    html.MakeAll(kTRUE);
    41 /*
     74
    4275    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");
    5477}
  • trunk/MagicSoft/Mars/.rootrc

    r8680 r8837  
    4444Root.Html.HomePage:          http://magic.astro.uni-wuerzburg.de/mars/
    4545Root.Html.SearchEngine:      http://magic.astro.uni-wuerzburg.de/mars/search.html
    46 Root.Html.ViewCVS:           http://www.astro.uni-wuerzburg.de/cgi-bin/viewcvs.cgi/
     46Root.Html.ViewCVS:           http://www.astro.uni-wuerzburg.de/viewcvs/
     47
    4748
    4849#############################################################################
  • trunk/MagicSoft/Mars/Changelog

    r8829 r8837  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20
     21 2008/01/27 Thomas Bretz
     22
     23   * .rootrc:
     24     - updated with the correct path to the ViewCVS
     25
     26
    2027
    2128 2008/01/24 Thomas Bretz
Note: See TracChangeset for help on using the changeset viewer.