- Timestamp:
- 08/19/02 13:13:16 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r1504 r1509 1 1 -*-*- END -*-*- 2 3 2002/08/19: Thomas Bretz 4 5 * mhist/MHillasExt.cc: 6 - removed a wrong 2 in the calculation of fAsym 7 8 2 9 3 10 2002/08/16: Thomas Bretz -
trunk/MagicSoft/Mars/manalysis/MHillasExt.cc
r1465 r1509 210 210 const MGeomPix &maxpix = geom[maxpixid]; 211 211 212 fAsym = 213 (GetMeanX()*2-maxpix.GetX())*GetCosDelta() + 214 (GetMeanY()*2-maxpix.GetY())*GetSinDelta(); // [mm] 212 fAsym = (GetMeanX()-maxpix.GetX())*GetCosDelta() + 213 (GetMeanY()-maxpix.GetY())*GetSinDelta(); // [mm] 215 214 216 215 fConc = (maxpix1+maxpix2)/GetSize(); // [ratio]
Note:
See TracChangeset
for help on using the changeset viewer.