Changeset 1652 for branches/alma


Ignore:
Timestamp:
10/22/09 19:43:06 (15 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready to Release: Yes

Interface Changes: Yes

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: No

Module(s): Module Names change impacts.

Description: Describe your changes here...

Removed unused methods.


Location:
branches/alma/src
Files:
2 edited

Legend:

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

    r1634 r1652  
    44414441  return sp ;
    44424442}
    4443 
    4444 CountedPtr<Scantable> STMath::pressedOut( const casa::CountedPtr<Scantable> &in,
    4445                                           const float numpoly,
    4446                                           const float radius,
    4447                                           const float threshold )
    4448 {
    4449   // scan pattern analysis
    4450 
    4451 
    4452   // for each channel
    4453   int nchan = in->nchan() ;
    4454   for ( int i = 0 ; i < nchan ; i++ ) {
    4455     // smoothing
    4456    
    4457     // get dTij
    4458    
    4459     // polynomial fitting
    4460    
    4461     // remove scanning effect from the map
    4462 
    4463   }
    4464 
    4465   return in ;
    4466 }
  • branches/alma/src/STMath.h

    r1634 r1652  
    316316                 const std::string& avmode = "SCAN" )
    317317    throw (casa::AipsError) ;
    318 
    319   /***
    320    * "Pressed-Out" method (Sofe & Reich 1979)
    321    * @param input scantable
    322    * @param order of polynomial fitting function
    323    * @param smoothing beam radius [arcsec]
    324    * @param threshold valus in the unit of sigma (standard deviation)
    325    ***/
    326   casa::CountedPtr<Scantable>
    327     pressedOut( const casa::CountedPtr<Scantable> &in,
    328                 const float numpoly,
    329                 const float radius,
    330                 const float threshold ) ;
    331318
    332319private:
Note: See TracChangeset for help on using the changeset viewer.