[installation] Change to nightly
This commit is contained in:
@ -39,12 +39,13 @@ class SC_SYSTEM_CLIENT_API AbstractAmplitudeProcessor_ML : public AmplitudeProce
|
||||
int capabilities() const override;
|
||||
IDList capabilityParameters(Capability cap) const override;
|
||||
bool setParameter(Capability cap, const std::string &value) override;
|
||||
std::string parameter(Capability cap) const override;
|
||||
|
||||
bool setup(const Settings &settings) override;
|
||||
|
||||
|
||||
protected:
|
||||
void setDefaultConfiguration();
|
||||
virtual void setDefaultConfiguration();
|
||||
|
||||
bool deconvolveData(Response *resp, DoubleArray &data, int numberOfIntegrations) override;
|
||||
|
||||
|
||||
@ -47,6 +47,7 @@ class SC_SYSTEM_CLIENT_API AmplitudeProcessor_MLc2h : public AmplitudeProcessor
|
||||
int capabilities() const override;
|
||||
IDList capabilityParameters(Capability cap) const override;
|
||||
bool setParameter(Capability cap, const std::string &value) override;
|
||||
std::string parameter(Capability cap) const override;
|
||||
|
||||
void reset() override;
|
||||
bool setup(const Settings &settings) override;
|
||||
@ -86,6 +87,7 @@ class SC_SYSTEM_CLIENT_API AmplitudeProcessor_MLc2h : public AmplitudeProcessor
|
||||
AmplitudeValue value;
|
||||
AmplitudeTime time;
|
||||
double snr;
|
||||
double period;
|
||||
};
|
||||
|
||||
enum CombinerProc {
|
||||
@ -96,9 +98,9 @@ class SC_SYSTEM_CLIENT_API AmplitudeProcessor_MLc2h : public AmplitudeProcessor
|
||||
};
|
||||
|
||||
mutable AmplitudeProcessor_MLc _ampE, _ampN;
|
||||
CombinerProc _combiner{TakeMax};
|
||||
CombinerProc _combiner;
|
||||
OPT(ComponentResult) _results[2];
|
||||
double _amplitudeScale{1.0};
|
||||
double _amplitudeScale;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -51,6 +51,7 @@ class SC_SYSTEM_CLIENT_API AmplitudeProcessor_ML2h : public AmplitudeProcessor {
|
||||
int capabilities() const override;
|
||||
IDList capabilityParameters(Capability cap) const override;
|
||||
bool setParameter(Capability cap, const std::string &value) override;
|
||||
std::string parameter(Capability cap) const override;
|
||||
|
||||
bool setup(const Settings &settings) override;
|
||||
|
||||
@ -90,6 +91,7 @@ class SC_SYSTEM_CLIENT_API AmplitudeProcessor_ML2h : public AmplitudeProcessor {
|
||||
AmplitudeValue value;
|
||||
AmplitudeTime time;
|
||||
double snr;
|
||||
double period;
|
||||
};
|
||||
|
||||
enum CombinerProc {
|
||||
|
||||
@ -40,6 +40,9 @@ class SC_SYSTEM_CLIENT_API AmplitudeProcessor_MLv : public AbstractAmplitudeProc
|
||||
double offset,
|
||||
AmplitudeIndex *dt, AmplitudeValue *amplitude,
|
||||
double *period, double *snr) override;
|
||||
|
||||
protected:
|
||||
void setDefaultConfiguration() override;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user