Changeset 1461 for trunk/MagicSoft


Ignore:
Timestamp:
07/31/02 14:09:39 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r1460 r1461  
    3030   * manalysis/MSrcPosCam.[h,cc]:
    3131     - removed AsciiRead/Write member function
     32
     33   * manalysis/MImgCleanStd.cc:
     34     - changed ispixused array size from max to max+1
    3235
    3336
  • trunk/MagicSoft/Mars/manalysis/MImgCleanStd.cc

    r1457 r1461  
    7070//
    7171// Default constructor. Here you can specify the cleaning levels. If you
    72 // don't specify them the 'common standard' values 2.5 and 3.0 (sigma
     72// don't specify them the 'common standard' values 3.0 and 2.5 (sigma
    7373// above mean) are used
    7474//
     
    135135    // (MCerPhotEvt::IsPixelUsed) all the time.
    136136    //
    137     Byte_t *ispixused = new Byte_t[max];
     137    Byte_t *ispixused = new Byte_t[max+1];
    138138
    139139    for (Int_t i=0; i<entries; i++)
Note: See TracChangeset for help on using the changeset viewer.