- Timestamp:
 - 03/01/06 11:49:55 (20 years ago)
 - Location:
 - trunk/src
 - Files:
 - 
      
- 2 edited
 
- 
          
  STMath.cpp (modified) (2 diffs)
 - 
          
  STMath.h (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/STMath.cpp
r847 r858 55 55 CountedPtr<Scantable> 56 56 STMath::average( const std::vector<CountedPtr<Scantable> >& in, 57 const Vector<Bool>& mask,57 const std::vector<bool>& mask, 58 58 const std::string& weight, 59 59 const std::string& avmode, … … 107 107 } 108 108 RowAccumulator acc(wtype); 109 acc.setUserMask(mask); 109 Vector<Bool> cmask(mask); 110 acc.setUserMask(cmask); 110 111 ROTableRow row(tout); 111 112 ROArrayColumn<Float> specCol, tsysCol;  - 
      
trunk/src/STMath.h
r841 r858 54 54 casa::CountedPtr<Scantable> 55 55 average( const std::vector<casa::CountedPtr<Scantable> >& in, 56 const casa::Vector<casa::Bool>& mask,57 const std::string& weight ,58 const std::string& avmode = " ",56 const std::vector<bool>& mask = std::vector<bool>(), 57 const std::string& weight = "NONE", 58 const std::string& avmode = "SCAN", 59 59 bool alignfreq = false ); 60 60  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  