| 22 | using namespace SigDigger; |
| 23 | |
| 24 | CarrierDetector::CarrierDetector( |
| 25 | const SUCOMPLEX *data, |
| 26 | size_t len, |
| 27 | qreal avgRelBw, |
| 28 | qreal dcNotchRelBw, |
| 29 | QObject *parent) : CancellableTask(parent) |
| 30 | { |
| 31 | this->data = data; |
| 32 | this->len = len; |
| 33 | this->avgRelBw = avgRelBw; |
| 34 | this->setProgress(0); |
| 35 | this->dcNotchRelBw = qBound(0., dcNotchRelBw, 1.); |
| 36 | |
| 37 | this->setStatus("Estimating best FFT plan"); |
| 38 | } |
| 39 | |
| 40 | CarrierDetector::~CarrierDetector() |
| 41 | { |
nothing calls this directly
no test coverage detected