Changeset 1640 for trunk/MagicSoft
- Timestamp:
- 11/18/02 18:19:39 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/macros/MagicHillas.C
r1633 r1640 111 111 MHillasCalc hcalc; 112 112 MHillasSrcCalc csrc1; 113 MHillasSrcCalc csrc2; 113 114 114 115 // -
trunk/MagicSoft/Mars/manalysis/MImgCleanStd.cc
r1540 r1640 113 113 114 114 // COBB: '<=' to skip entry=noise=0 115 if (entry <= fCleanLvl1 * noise )115 if (entry <= fCleanLvl1 * noise / sqrt(fCam->GetPixRatio(i))) 116 116 pix.SetPixelUnused(); 117 117 … … 260 260 const Float_t noise = pix.GetErrorPhot(); 261 261 262 if (entry <= fCleanLvl2 * noise )262 if (entry <= fCleanLvl2 * noise / sqrt(fCam->GetPixRatio(i))) 263 263 continue; 264 264 -
trunk/MagicSoft/Mars/mgeom/MGeomPix.cc
r1459 r1640 50 50 // -------------------------------------------------------------------------- 51 51 // 52 // Initiali yes one pixel52 // Initializes one pixel 53 53 // 54 54 MGeomPix::MGeomPix(Float_t x, Float_t y, Float_t r) : fX(x), fY(y), fR(r) … … 59 59 // -------------------------------------------------------------------------- 60 60 // 61 // Return the area of the pixel. A he gagonal shape is assumed.61 // Return the area of the pixel. A hexagonal shape is assumed. 62 62 // 63 63 Float_t MGeomPix::GetA() const … … 68 68 // -------------------------------------------------------------------------- 69 69 // 70 // Initiali yes Next Neighbors.70 // Initializes Next Neighbors. 71 71 // 72 // WARNING: This function is public, but it is not me nt for user access.72 // WARNING: This function is public, but it is not meant for user access. 73 73 // It should only be used from geometry classes (like MGeomCam) 74 74 //
Note:
See TracChangeset
for help on using the changeset viewer.