Changeset 842
- Timestamp:
- 02/23/06 11:22:31 (19 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/STSelector.cpp
r812 r842 62 62 { 63 63 set("POLNO", pols); 64 } 65 66 void asap::STSelector::setCycles( const std::vector< int >& cycs ) 67 { 68 set("CYCLENO", cycs); 64 69 } 65 70 … … 133 138 } 134 139 140 std::vector< int > asap::STSelector::getCycles( ) 141 { 142 return get("CYCLENO"); 143 } 144 135 145 std::string asap::STSelector::print( ) 136 146 { -
trunk/src/STSelector.h
r812 r842 34 34 STSelector& operator=(const STSelector& other); 35 35 36 ~STSelector();36 virtual ~STSelector(); 37 37 38 38 void setScans(const std::vector<int>& scans); … … 40 40 void setIFs(const std::vector<int>& ifs); 41 41 void setPolarizations(const std::vector<int>& pols); 42 void setCycles(const std::vector<int>& cycs); 42 43 void setTaQL(const std::string& taql); 43 44 … … 46 47 std::vector<int> getIFs(); 47 48 std::vector<int> getPols(); 49 std::vector<int> getCycles(); 48 50 49 51 casa::Table apply(const casa::Table& tab);
Note:
See TracChangeset
for help on using the changeset viewer.