Ignore:
Timestamp:
02/24/09 14:12:51 (15 years ago)
Author:
Kana Sugimoto
Message:

New Development: No

JIRA Issue: Yes (CAS-1079)

Ready to Release: Yes

Interface Changes: Yes

What Interface Changed: Changed names of functions

  1. (NEW) std::vector<int> asap::python::stmath::_minmaxchan (OLD) std::vector<int> asap::python::stmath::_minmaxpos @python_STMath.cpp
  2. (NEW) std::vector<int> STMathWrapper::minMaxChan (OLD) std::vector<int> STMathWrapper::minMaxPos @STMathWrapper.h
  3. (NEW) std::vector<int> STMath::minMaxChan (OLD) std::vector<int> STMath::minMaxPos @STMath.h & .cpp

Test Programs:

Run scantable.stats() with the parameter stat='min_abc' or 'max_abc',
and you(ll get min/max value with its position.
Notice that parameter names to select in scantable.stats() are also changed.

Put in Release Notes: No

Module(s): scantable.stats()

Description:

The names of functions are changed from rev. 1514.

These modifications are to return min/max value with its
position (channel/frequency/velocity) by running scantable.stats().

Diagram:
scantable.stats() ->asap::python::stmath::_minmaxchan
-> STMathWrapper::minMaxChan -> STMath::minMaxChan() -> mathutil::minMaxPos()
-> casa::minMax (@casacore/casa/casa/Arrays/MaskArrMath.tcc)


File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/alma/src/STMath.cpp

    r1514 r1516  
    10971097}
    10981098
    1099 std::vector< int > STMath::minMaxPos( const CountedPtr< Scantable > & in,
     1099std::vector< int > STMath::minMaxChan( const CountedPtr< Scantable > & in,
    11001100                                        const std::vector< bool > & mask,
    11011101                                        const std::string& which )
     
    11131113    if (ma.ndim() != 1) {
    11141114      throw (ArrayError(
    1115           "std::vector<int> STMath::minMaxPos("
     1115          "std::vector<int> STMath::minMaxChan("
    11161116          "ContedPtr<Scantable> &in, std::vector<bool> &mask, "
    11171117          " std::string &which)"
Note: See TracChangeset for help on using the changeset viewer.