- Timestamp:
- 10/22/09 19:43:06 (15 years ago)
- Location:
- branches/alma/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/alma/src/STMath.cpp
r1634 r1652 4441 4441 return sp ; 4442 4442 } 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 analysis4450 4451 4452 // for each channel4453 int nchan = in->nchan() ;4454 for ( int i = 0 ; i < nchan ; i++ ) {4455 // smoothing4456 4457 // get dTij4458 4459 // polynomial fitting4460 4461 // remove scanning effect from the map4462 4463 }4464 4465 return in ;4466 } -
branches/alma/src/STMath.h
r1634 r1652 316 316 const std::string& avmode = "SCAN" ) 317 317 throw (casa::AipsError) ; 318 319 /***320 * "Pressed-Out" method (Sofe & Reich 1979)321 * @param input scantable322 * @param order of polynomial fitting function323 * @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 ) ;331 318 332 319 private:
Note:
See TracChangeset
for help on using the changeset viewer.