Changeset 1640 for trunk/MagicSoft


Ignore:
Timestamp:
11/18/02 18:19:39 (22 years ago)
Author:
bigongia
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/macros/MagicHillas.C

    r1633 r1640  
    111111    MHillasCalc    hcalc;
    112112    MHillasSrcCalc csrc1;
     113    MHillasSrcCalc csrc2;
    113114
    114115    //
  • trunk/MagicSoft/Mars/manalysis/MImgCleanStd.cc

    r1540 r1640  
    113113
    114114        // COBB: '<=' to skip entry=noise=0
    115         if (entry <= fCleanLvl1 * noise)
     115        if (entry <= fCleanLvl1 * noise / sqrt(fCam->GetPixRatio(i)))
    116116            pix.SetPixelUnused();
    117117
     
    260260        const Float_t noise = pix.GetErrorPhot();
    261261
    262         if (entry <= fCleanLvl2 * noise)
     262        if (entry <= fCleanLvl2 * noise / sqrt(fCam->GetPixRatio(i)))
    263263            continue;
    264264
  • trunk/MagicSoft/Mars/mgeom/MGeomPix.cc

    r1459 r1640  
    5050// --------------------------------------------------------------------------
    5151//
    52 // Initialiyes one pixel
     52// Initializes one pixel
    5353//
    5454MGeomPix::MGeomPix(Float_t x, Float_t y, Float_t r) : fX(x), fY(y), fR(r)
     
    5959// --------------------------------------------------------------------------
    6060//
    61 // Return the area of the pixel. A hegagonal shape is assumed.
     61// Return the area of the pixel. A hexagonal shape is assumed.
    6262//
    6363Float_t MGeomPix::GetA() const
     
    6868// --------------------------------------------------------------------------
    6969//
    70 // Initialiyes Next Neighbors.
     70// Initializes Next Neighbors.
    7171//
    72 // WARNING: This function is public, but it is not ment for user access.
     72// WARNING: This function is public, but it is not meant for user access.
    7373// It should only be used from geometry classes (like MGeomCam)
    7474//
Note: See TracChangeset for help on using the changeset viewer.