Changeset 2976 for trunk


Ignore:
Timestamp:
07/15/14 20:06:47 (10 years ago)
Author:
Kana Sugimoto
Message:

New Development: No

JIRA Issue: Yes (CAS-5139)

Ready for Test: Yes

Interface Changes: No

What Interface Changed:

Test Programs:

Put in Release Notes: No

Module(s): asap.sbseparator

Description: Fixed a bug for ifno=-1.


Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/STSideBandSep.cpp

    r2866 r2976  
    124124};
    125125
    126 void STSideBandSep::setFrequency(const unsigned int ifno,
     126void STSideBandSep::setFrequency(const int ifno,
    127127                                 const string freqtol,
    128128                                 const string frame)
     
    133133
    134134  // IFNO
    135   sigIfno_ = (int) ifno;
     135  sigIfno_ = ifno;
    136136
    137137  // Frequency tolerance
  • trunk/src/STSideBandSep.h

    r2865 r2976  
    5252   * Set IFNO and frequency tolerance to select data to process
    5353   **/
    54   void setFrequency(const unsigned int ifno, const string freqtol,
     54  void setFrequency(const int ifno, const string freqtol,
    5555                    const string frame="");
    5656
Note: See TracChangeset for help on using the changeset viewer.