Changes in trunk/src/Scantable.h [1819:1947]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Scantable.h
r1819 r1947 18 18 // AIPS++ 19 19 #include <casa/aips.h> 20 #include <casa/Containers/Record.h> 20 21 #include <casa/Arrays/MaskedArray.h> 21 22 #include <casa/BasicSL/String.h> … … 47 48 #include "STFit.h" 48 49 #include "STFitEntry.h" 50 #include "STFitter.h" 49 51 50 52 namespace asap { … … 366 368 367 369 std::string summary(bool verbose=false); 368 std::string getTime(int whichrow=-1, bool showdate=true) const; 370 //std::string getTime(int whichrow=-1, bool showdate=true) const; 371 std::string getTime(int whichrow=-1, bool showdate=true, casa::uInt prec=0) const; 369 372 double getIntTime(int whichrow) const { return integrCol_(whichrow); } 370 373 … … 486 489 void regridChannel( int nchan, double dnu, int irow ) ; 487 490 491 bool getFlagtraFast(int whichrow); 492 493 void polyBaselineBatch(const std::vector<bool>& mask, int order); 494 STFitEntry polyBaseline(const std::vector<bool>& mask, int order, int rowno); 488 495 489 496 private: … … 499 506 500 507 std::string formatTime(const casa::MEpoch& me, bool showdate)const; 508 std::string formatTime(const casa::MEpoch& me, bool showdate, casa::uInt prec)const; 501 509 502 510 /** … … 506 514 */ 507 515 std::string formatDirection(const casa::MDirection& md) const; 508 509 516 510 517 /** … … 598 605 const casa::String&, 599 606 const casa::Array<T2>&); 607 608 void doPolyBaseline(const std::vector<bool>& mask, int order, int rowno, Fitter& fitter); 600 609 }; 601 610
Note:
See TracChangeset
for help on using the changeset viewer.