Changeset 8287 for trunk/MagicSoft


Ignore:
Timestamp:
02/01/07 15:57:02 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8282 r8287  
    3737     - small improvements to splitting number rows
    3838     - handle possible tabs correctly
     39
     40   * mbase/MStatusArray.[h,cc]:
     41     - improved handling in Read(). We make sure now that Read doesn't
     42       produce a memory leak
     43
     44   * mhist/MHCamera.[h,cc]:
     45     - overwrote Clone function to make sure that a cloned MHCamera
     46       is never added to the current directory
     47
     48   * mcamera/MCameraTH.h:
     49     - added a workaround to get rid of the obsolete discriminator thresholds
     50       for the non-trigger pixels
     51
     52   * mreport/MReportCC.cc:
     53     - added a sanity \o-Terminator to the dicriminator threshold extraction
     54
    3955
    4056
  • trunk/MagicSoft/Mars/NEWS

    r8280 r8287  
    1515   - general: fixed the error display of the camera display. It showed
    1616     wrong results.
     17
     18   - general: fixed a memory leak when reading many MStatusDisplays
    1719
    1820   - callisto: Redone the signal extraction this includes:
  • trunk/MagicSoft/Mars/mcamera/MCameraTH.h

    r7719 r8287  
     1/* ======================================================================== *\
     2!  $Name: not supported by cvs2svn $:$Id: MCameraTH.h,v 1.7 2007-02-01 15:56:17 tbretz Exp $
     3\* ======================================================================== */
    14#ifndef MARS_MCameraTH
    25#define MARS_MCameraTH
     
    4043            return kFALSE;
    4144
     45        // FIXME: This is a stupid workaround to describe the trigger area
     46        //        and only valid for the MAGIC-I camera!
     47        if (idx>=397 ||
     48            (idx>=339 && idx<=345) ||
     49            (idx>=279 && idx<=283) ||
     50            (idx>=331 && idx<=334) ||
     51            (idx>=394 && idx<=396) ||
     52            (idx>=271 && idx<=273) ||
     53            (idx>=329 && idx<=330) ||
     54            (idx>=383 && idx<=389) ||
     55            (idx>=319 && idx<=323) ||
     56            (idx>=289 && idx<=293) ||
     57            (idx>=350 && idx<=356) ||
     58            (idx>=299 && idx<=303) ||
     59            (idx>=361 && idx<=367) ||
     60            (idx>=309 && idx<=313) ||
     61            (idx>=372 && idx<=378))
     62            return kFALSE;
     63
    4264        val = fTH[idx];
    4365        return val>0;
  • trunk/MagicSoft/Mars/mreport/MReportCC.cc

    r7726 r8287  
    167167    while (pos<end)
    168168    {
    169         const Char_t hex[2] = { pos[0], pos[1] };
     169        const Char_t hex[3] = { pos[0], pos[1], 0 };
    170170        pos += 2;
    171171
Note: See TracChangeset for help on using the changeset viewer.