Ignore:
Timestamp:
09/20/05 11:52:36 (19 years ago)
Author:
mar637
Message:

Changed circularFrom Stokes convention /=2.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Release-2-fixes/src/SDPol.cc

    r540 r673  
    351351//
    352352// We use the convention
    353 //  I = (RR+LL)/2
     353//  I = (RR+LL)  // definition changed
    354354//
    355355{
    356356   if (doRR) {
    357       return I + V;
     357      return (I + V)/2.0;
    358358   } else {
    359       return I - V;
     359      return (I - V)/2.0;
    360360   }
    361361}
Note: See TracChangeset for help on using the changeset viewer.