Changeset 2804
- Timestamp:
- 03/29/13 18:18:20 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/external-alma/atnf/PKSIO/NROReader.cc
r2783 r2804 515 515 string poltp = dataset_->getPOLTP()[0] ; 516 516 //cout << "poltp = '" << poltp << "'" << endl ; 517 if ( poltp == "" || poltp[0] == '' )517 if ( poltp.empty() || poltp[0] == ' ' || poltp[0] == '\0' ) 518 518 //poltp = "None" ; 519 519 poltp = "linear" ; // if no polarization type specified, set to "linear" … … 525 525 poltp = "circular" ; 526 526 poltype = poltp ; 527 //cout << "poltype = " << poltype<< endl ;527 //cout << "poltype = '" << poltype << "'" << endl ; 528 528 529 529 //vector<Bool> ifs = getIFs() ;
Note:
See TracChangeset
for help on using the changeset viewer.