Changeset 1077 for trunk/src/ScantableWrapper.h
- Timestamp:
 - 07/06/06 11:28:10 (19 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/src/ScantableWrapper.h (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/ScantableWrapper.h
r1068 r1077 37 37 public: 38 38 ScantableWrapper( const std::string& name, 39 const std::string& type="")39 int type=0) 40 40 { 41 41 casa::Table::TableType tp = casa::Table::Memory; 42 if ( type == "disk") tp = casa::Table::Plain;42 if ( type == 1 ) tp = casa::Table::Plain; 43 43 table_ = new Scantable(name, tp); 44 44 } 45 45 46 ScantableWrapper( const std::string& type="")46 ScantableWrapper(int type=0) 47 47 { 48 48 casa::Table::TableType tp = casa::Table::Memory; 49 if ( type == "disk") tp = casa::Table::Plain;49 if ( type == 1) tp = casa::Table::Plain; 50 50 table_= new Scantable(tp); 51 51 }  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  