Changeset 1684 for branches/alma/src
- Timestamp:
- 02/04/10 20:42:12 (15 years ago)
- Location:
- branches/alma/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/alma/src/STFiller.cpp
r1683 r1684 75 75 nreader_(0) 76 76 { 77 open(filename, whichIF, whichBeam);77 open(filename, "", whichIF, whichBeam); 78 78 } 79 79 … … 82 82 close(); 83 83 } 84 85 void STFiller::open( const std::string& filename, int whichIF, int whichBeam, casa::Bool getPt )84 85 void STFiller::open( const std::string& filename, const std::string& antenna, int whichIF, int whichBeam, casa::Bool getPt ) 86 86 { 87 87 if (table_.null()) { … … 122 122 // 123 123 124 if ( (reader_ = getPKSreader(inName, 0, 0, format, beams, ifs,124 if ( (reader_ = getPKSreader(inName, antenna, 0, 0, format, beams, ifs, 125 125 nchans, npols, haveXPol_,haveBase, haveSpectra 126 126 )) == 0 ) { -
branches/alma/src/STFiller.h
r1603 r1684 76 76 * @exception AipsError Creation of PKSreader failed 77 77 */ 78 void open( const std::string& filename, int whichIF=-1, int whichBeam=-1, casa::Bool getPt=casa::False );78 void open( const std::string& filename, const std::string& antenna, int whichIF=-1, int whichBeam=-1, casa::Bool getPt=casa::False ); 79 79 80 80 /**
Note:
See TracChangeset
for help on using the changeset viewer.