Changeset 1353 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 06/10/02 09:01:08 (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MHillas.cc
r1218 r1353 281 281 // ------------------------------------------------------------------- 282 282 // 283 const float d = corryy - corrxx;284 285 fDelta = atan 2(d + sqrt(d*d + corrxy*corrxy*4), corrxy*2);283 const float d = (corryy - corrxx)/(corrxy*2); 284 285 fDelta = atan(d + sqrt(d*d + 1)); 286 286 287 287 fCosDelta = cos(fDelta); // need these in derived classes
Note:
See TracChangeset
for help on using the changeset viewer.