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/FillerWrapper.h

    r2998 r3106  
    3939
    4040
    41   void open(const std::string& filename, const casa::Record& rec) {
     41  void open(const std::string& filename, const casacore::Record& rec) {
    4242    //  void open(const std::string& filename) {
    43     casa::File file(filename);
     43    casacore::File file(filename);
    4444    if ( !file.exists() ) {
    4545      throw(AipsError("File does not exist"));
     
    6262    filler_ = 0;
    6363    attached_ = false;
    64     throw casa::AipsError("Unknown Data Format");
     64    throw casacore::AipsError("Unknown Data Format");
    6565  }
    6666  void close() {
     
    8888    int pks = 0 ;
    8989    int nro = 1 ;
    90     casa::File file( filename ) ;
     90    casacore::File file( filename ) ;
    9191    if ( file.isDirectory() )
    9292      ret = pks ;
     
    103103      // So, one can distinguish NRO and non-NRO data by examining
    104104      // first keyword name.
    105       if ( casa::String( buf ) == "SIMPLE" ) {
     105      if ( casacore::String( buf ) == "SIMPLE" ) {
    106106        ret = pks ;
    107107      }
     
    117117  FillerWrapper& operator=(const FillerWrapper&);
    118118
    119   casa::CountedPtr<FillerBase> filler_;
     119  casacore::CountedPtr<FillerBase> filler_;
    120120  bool attached_;
    121   casa::CountedPtr<Scantable> stable_;
     121  casacore::CountedPtr<Scantable> stable_;
    122122};
    123123
Note: See TracChangeset for help on using the changeset viewer.