Ignore:
Timestamp:
Sep 17, 2003, 11:59:59 AM (22 years ago)
Author:
ansari
Message:

Correction erreur (division NON commutative) pour LocalMap, SphereHEALPix SphereThetaPhi - Reza 17/09/2003

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/SkyMap/spherethetaphi.h

    r2290 r2433  
    352352inline SphereThetaPhi<T> operator / (const SphereThetaPhi<T>& a,const SphereThetaPhi<T>& b)
    353353    { SphereThetaPhi<T> result; result.SetTemp(true);
    354     if (b.IsTemp())  { result.Share(b); result.DivElt(a, true); }
    355     else { result.CloneOrShare(a); result.DivElt(b); }
     354    result.CloneOrShare(a); result.DivElt(b);
    356355    return result; }
    357356
Note: See TracChangeset for help on using the changeset viewer.