Ignore:
Timestamp:
08/16/02 08:59:36 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h

    r1466 r1503  
    2222public:
    2323
    24     MCerPhotPix(Int_t pix = -1, Float_t phot=0., Float_t errphot=0.);
     24    MCerPhotPix(Int_t pix=-1, Float_t phot=0, Float_t errphot=0);
    2525
    2626    Int_t   GetPixId() const         { return fPixId;   }
  • trunk/MagicSoft/Mars/manalysis/MImgCleanStd.cc

    r1487 r1503  
    125125//
    126126//  check if the survived pixel have a neighbor, that also
    127 //  survived
     127//  survived, otherwise set pixel to unused. (removes pixels without
     128//  neighbors)
    128129//
    129130//  takes the maximum pixel id from CleanStep1 as an argument
     
    140141    //
    141142    Byte_t *ispixused = new Byte_t[max+1];
     143    memset(ispixused, 0, max+1);
    142144
    143145    for (Int_t i=0; i<entries; i++)
Note: See TracChangeset for help on using the changeset viewer.