Changeset 4993 for trunk/MagicSoft


Ignore:
Timestamp:
09/14/04 13:11:53 (20 years ago)
Author:
stamerra
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r4991 r4993  
    1919
    2020                                                 -*-*- END OF LINE -*-*-
     21 2004/09/14: Antonio Stamerra
     22
     23   * mtrigger/MTriggerIPR.h:
     24     - added "=" to (idx >= gsNTrigPix) in GetPixelContent
     25
     26   * macros/readIPR.C:
     27     - new macro to read and display the IPRs
     28
     29   * macro/dohtml.C:
     30     - added readIPR
     31               
     32
    2133 2004/09/14: Thomas Bretz
    2234
  • trunk/MagicSoft/Mars/macros/dohtml.C

    r4930 r4993  
    125125    html.Convert("calibration.C",   "MARS - Example how to use the calibrationa camera ");
    126126    html.Convert("bootcampstandardanalysis.C",  "MARS - Example of the status of the standard analysis at the bootcamp");
     127    html.Convert("readIPR.C",       "MARS - Example to read and display the IPRs from a (merpped) report file");
    127128}
  • trunk/MagicSoft/Mars/mtrigger/MTriggerIPR.h

    r4966 r4993  
    3333    Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const
    3434    {
    35       if (idx > gsNTrigPix)
     35      if (idx >= gsNTrigPix)
    3636        return kFALSE;
    3737
Note: See TracChangeset for help on using the changeset viewer.