Ignore:
Timestamp:
10/04/16 18:20:50 (8 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready for Test: Yes/No?

Interface Changes: Yes/No?

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...


Check-in asap modifications from Jim regarding casacore namespace conversion.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/EdgeDetector.h

    r2613 r3106  
    2626  virtual ~EdgeDetector() ;
    2727
    28   void setDirection( const casa::Matrix<casa::Double> &dir ) ;
    29   void setTime( const casa::Vector<casa::Double> &t ) ;
    30   void setOption( const casa::Record &option ) ;
    31   virtual casa::Vector<casa::uInt> detect() = 0 ;
     28  void setDirection( const casacore::Matrix<casacore::Double> &dir ) ;
     29  void setTime( const casacore::Vector<casacore::Double> &t ) ;
     30  void setOption( const casacore::Record &option ) ;
     31  virtual casacore::Vector<casacore::uInt> detect() = 0 ;
    3232
    3333protected:
    34   virtual void parseOption( const casa::Record &option ) = 0 ;
    35   casa::Vector<casa::uInt> vectorFromTempStorage( const casa::uInt &n ) ;
     34  virtual void parseOption( const casacore::Record &option ) = 0 ;
     35  casacore::Vector<casacore::uInt> vectorFromTempStorage( const casacore::uInt &n ) ;
    3636  void initDetect() ;
    3737
    3838  // input data
    39   casa::Matrix<casa::Double> dir_ ;
    40   casa::Vector<casa::Double> time_ ;
     39  casacore::Matrix<casacore::Double> dir_ ;
     40  casacore::Vector<casacore::Double> time_ ;
    4141
    4242  // output data: list of indexes for OFF positions
    43   casa::Vector<casa::uInt> off_ ;
     43  casacore::Vector<casacore::uInt> off_ ;
    4444 
    4545  // temporary memory storage
    46   casa::Block<casa::uInt> tempuInt_ ;
    47   casa::IPosition tempIP_ ;
     46  casacore::Block<casacore::uInt> tempuInt_ ;
     47  casacore::IPosition tempIP_ ;
    4848
    4949  // logging
    50   casa::LogIO os_ ;
     50  casacore::LogIO os_ ;
    5151
    5252private:
    53   void resizeTempArea( const casa::uInt &n ) ;
     53  void resizeTempArea( const casacore::uInt &n ) ;
    5454} ;
    5555
Note: See TracChangeset for help on using the changeset viewer.