Ignore:
Timestamp:
03/21/06 14:50:18 (18 years ago)
Author:
mar637
Message:

added polarimtery functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/STMathWrapper.h

    r872 r912  
    105105    return ScantableWrapper(STMath::merge(sts)); }
    106106
     107  ScantableWrapper rotateXYPhase( const ScantableWrapper& in, float angle)
     108  { return ScantableWrapper(STMath::rotateXYPhase(in.getCP(), angle)); }
     109
     110  ScantableWrapper rotateLinPolPhase( const ScantableWrapper& in, float angle)
     111  { return ScantableWrapper(STMath::rotateLinPolPhase(in.getCP(), angle)); }
     112
     113  ScantableWrapper invertPhase( const ScantableWrapper& in )
     114  { return ScantableWrapper(STMath::invertPhase(in.getCP())); }
     115
     116  ScantableWrapper swapPolarisations( const ScantableWrapper& in )
     117  { return ScantableWrapper(STMath::swapPolarisations(in.getCP())); }
     118
    107119};
    108120
Note: See TracChangeset for help on using the changeset viewer.