Changeset 5796


Ignore:
Timestamp:
01/11/05 09:27:20 (20 years ago)
Author:
riegel
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5793 r5796  
    2020
    2121                                                 -*-*- END OF LINE -*-*-
     22 2005/01/10 Benjamin Riegel
     23 
     24   * mreport/MReportStarguider.cc, mreport/MReportStarguider.h
     25     - added two classes for implementing starguider-data
     26 
     27   * mreport/ReportLinkDef.h
     28     - added class MReportStarguider to be linked:
     29       #pragma link C++ class MReportStarguider+;
     30     
     31   * mreport/Makefile
     32     - added file MReportStarguider.cc
     33   
     34   * merpp.cc
     35     - added two containers ( MReportStarguider, MTimeStarguider ) and
     36       added MReportStarguider to the list:
     37       w->AddContainer("MReportStarguider",  "Starguider");
     38       w->AddContainer("MTimeStarguider",    "Starguider");
     39       r->AddToList("MReportStarguider");
     40       
     41       
     42       
    2243 2005/01/10 Markus Gaug
    2344
  • trunk/MagicSoft/Mars/NEWS

    r5760 r5796  
    22 *** Version <cvs>
    33
     4   - added two classes mreport/MReportStarguider.cc and
     5     mreport/MReportStarguider.h for implementing starguider-data
     6     
     7   - For implementing the starguider-data the class MReportStarguider has
     8     been added to mreport/ReportLinkDef.h and to mreport/Makefile
     9     
     10   - added two containers ( MReportStarguider, MTimeStarguider ) and
     11     added MReportStarguider to the list in merpp.cc
     12   
    413   - Fixed bug in MHHadronness.cc which made that the displayed Q-factor
    514     values were lower than they should. This was more visible for high
  • trunk/MagicSoft/Mars/merpp.cc

    r4966 r5796  
    339339            w->AddContainer("MReportCC",          "CC");
    340340            w->AddContainer("MTimeCC",            "CC");
     341            w->AddContainer("MReportStarguider",  "Starguider");
     342            w->AddContainer("MTimeStarguider",    "Starguider");
    341343            // w->AddContainer("MReportDAQ",         "DAQ");
    342344            // w->AddContainer("MTimeDAQ",           "DAQ");
     
    360362            r->AddToList("MReportCamera");
    361363            r->AddToList("MReportTrigger");
     364            r->AddToList("MReportStarguider");
    362365            if (kRunNumber>0)
    363366            {
  • trunk/MagicSoft/Mars/mreport/Makefile

    r4921 r5796  
    3232           MReportCurrents.cc \
    3333           MReportFileRead.cc \
    34            MReportFileReadCC.cc
    35 
     34           MReportFileReadCC.cc \
     35           MReportStarguider.cc
    3636############################################################
    3737
  • trunk/MagicSoft/Mars/mreport/ReportLinkDef.h

    r4575 r5796  
    1111#pragma link C++ class MReportDAQ+;
    1212#pragma link C++ class MReportDrive+;
     13#pragma link C++ class MReportStarguider+;
    1314#pragma link C++ class MReportCamera+;
    1415#pragma link C++ class MReportTrigger+;
Note: See TracChangeset for help on using the changeset viewer.