Brief description of class still missing. More...
#include <MorletParameters.h>
Public Member Functions | |
| virtual void | collectKeywords (PARAMETERS_COLLECTKEYWORDS_ARGS) |
| double | deltaF () const |
| double | deltaT () const |
| double | fi () const |
| virtual int | keywordCount (PARAMETERS_KEYWORDCOUNT_ARGS) |
| double | m () const |
| MorletParameters () | |
| MorletParameters (const MorletParameters &o) | |
| void | setFi (double v) |
| void | setM (double v) |
| virtual bool | setValue (PARAMETERS_SETVALUE_ARGS) |
| virtual QString | toString (PARAMETERS_TOSTRING_ARGS_DECL) const |
Brief description of class still missing.
Full description of class still missing
{
_fi=1.0;
_m=1.0;
}
{
_fi=o._fi;
_m=o._m;
}
| void GeopsyCore::MorletParameters::collectKeywords | ( | PARAMETERS_COLLECTKEYWORDS_ARGS | ) | [virtual] |
Reimplemented from QGpCoreTools::AbstractParameters.
References TRACE.
Referenced by TFAParameters::collectKeywords().
{
TRACE;
keywords.add(prefix+"MORLET FI", this, 0);
keywords.add(prefix+"MORLET M", this, 1);
keywords.add(prefix+"MORLET W0", this, 2); // kept to avoid compatibility error
}
| double GeopsyCore::MorletParameters::deltaF | ( | ) | const |
References QGpCoreTools::sqrt(), and TRACE.
| double GeopsyCore::MorletParameters::deltaT | ( | ) | const |
References QGpCoreTools::sqrt(), and TRACE.
| double GeopsyCore::MorletParameters::fi | ( | ) | const [inline] |
Referenced by GeopsyCore::DoubleSignal::morletWavelet(), GeopsyGui::MorletParameterWidget::setParameters(), and GeopsyCore::SignalProcess::waveletTransform().
{return _fi;}
| int GeopsyCore::MorletParameters::keywordCount | ( | PARAMETERS_KEYWORDCOUNT_ARGS | ) | [virtual] |
Reimplemented from QGpCoreTools::AbstractParameters.
{
return 3;
}
| double GeopsyCore::MorletParameters::m | ( | ) | const [inline] |
Referenced by GeopsyCore::DoubleSignal::morletWavelet(), GeopsyGui::MorletParameterWidget::setParameters(), and GeopsyCore::SignalProcess::waveletTransform().
{return _m;}
| void GeopsyCore::MorletParameters::setFi | ( | double | v | ) | [inline] |
Referenced by TFAResults::compute(), and GeopsyGui::MorletParameterWidget::getParameters().
{_fi=v;}
| void GeopsyCore::MorletParameters::setM | ( | double | v | ) | [inline] |
Referenced by GeopsyGui::MorletParameterWidget::getParameters().
{_m=v;}
| bool GeopsyCore::MorletParameters::setValue | ( | PARAMETERS_SETVALUE_ARGS | ) | [virtual] |
Reimplemented from QGpCoreTools::AbstractParameters.
References TRACE.
{
TRACE;
switch(index) {
case 0:
_fi=value.toDouble();
return true;
case 1:
_m=value.toDouble();
return true;
case 2:
return true;
default:
return false;
}
}
| QString GeopsyCore::MorletParameters::toString | ( | PARAMETERS_TOSTRING_ARGS_DECL | ) | const [virtual] |
Reimplemented from QGpCoreTools::AbstractParameters.
References QGpCoreTools::log(), and TRACE.
Referenced by TFAParameters::toString().