| 642 | return lowerSideBand ? -bw / 2 : 0; |
| 643 | } |
| 644 | qint32 MainSpectrum::computeHighCutFreq(int bw) const |
| 645 | { |
| 646 | bool upperSideBand = |
| 647 | this->filterSkewness == SYMMETRIC || this->filterSkewness == UPPER; |
| 648 | |
| 649 | return upperSideBand ? +bw / 2 : 0; |
| 650 | } |
| 651 | |
| 652 | void |
| 653 | MainSpectrum::setShowFATs(bool show) |