You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

245 lines
7.5 KiB
C++

/***************************************************************************
* Copyright (C) gempa GmbH *
* All rights reserved. *
* Contact: gempa GmbH (seiscomp-dev@gempa.de) *
* *
* GNU Affero General Public License Usage *
* This file may be used under the terms of the GNU Affero *
* Public License version 3.0 as published by the Free Software Foundation *
* and appearing in the file LICENSE included in the packaging of this *
* file. Please review the following information to ensure the GNU Affero *
* Public License version 3.0 requirements will be met: *
* https://www.gnu.org/licenses/agpl-3.0.html. *
* *
* Other Usage *
* Alternatively, this file may be used in accordance with the terms and *
* conditions contained in a signed written agreement between you and *
* gempa GmbH. *
***************************************************************************/
#ifndef SEISCOMP_DATAMODEL_RESPONSEIIR_H
#define SEISCOMP_DATAMODEL_RESPONSEIIR_H
#include <string>
#include <seiscomp/datamodel/realarray.h>
#include <seiscomp/datamodel/blob.h>
#include <seiscomp/datamodel/publicobject.h>
#include <seiscomp/core/exceptions.h>
namespace Seiscomp {
namespace DataModel {
DEFINE_SMARTPOINTER(ResponseIIR);
class Inventory;
class SC_SYSTEM_CORE_API ResponseIIRIndex {
// ------------------------------------------------------------------
// Xstruction
// ------------------------------------------------------------------
public:
//! Constructor
ResponseIIRIndex();
ResponseIIRIndex(const std::string& name);
//! Copy constructor
ResponseIIRIndex(const ResponseIIRIndex&);
// ------------------------------------------------------------------
// Operators
// ------------------------------------------------------------------
public:
bool operator==(const ResponseIIRIndex&) const;
bool operator!=(const ResponseIIRIndex&) const;
// ------------------------------------------------------------------
// Attributes
// ------------------------------------------------------------------
public:
std::string name;
};
/**
* \brief This type describes a infinite impulse response filter
*/
class SC_SYSTEM_CORE_API ResponseIIR : public PublicObject {
DECLARE_SC_CLASS(ResponseIIR)
DECLARE_SERIALIZATION;
DECLARE_METAOBJECT;
// ------------------------------------------------------------------
// Xstruction
// ------------------------------------------------------------------
protected:
//! Protected constructor
ResponseIIR();
public:
//! Copy constructor
ResponseIIR(const ResponseIIR& other);
//! Constructor with publicID
ResponseIIR(const std::string& publicID);
//! Destructor
~ResponseIIR() override;
// ------------------------------------------------------------------
// Creators
// ------------------------------------------------------------------
public:
static ResponseIIR* Create();
static ResponseIIR* Create(const std::string& publicID);
// ------------------------------------------------------------------
// Lookup
// ------------------------------------------------------------------
public:
static ResponseIIR* Find(const std::string& publicID);
// ------------------------------------------------------------------
// Operators
// ------------------------------------------------------------------
public:
//! Copies the metadata of other to this
//! No changes regarding child objects are made
ResponseIIR& operator=(const ResponseIIR& other);
//! Checks for equality of two objects. Child objects
//! are not part of the check.
bool operator==(const ResponseIIR& other) const;
bool operator!=(const ResponseIIR& other) const;
//! Wrapper that calls operator==
bool equal(const ResponseIIR& other) const;
// ------------------------------------------------------------------
// Setters/Getters
// ------------------------------------------------------------------
public:
//! Unique response name
void setName(const std::string& name);
const std::string& name() const;
//! Response type (43.05/53.03/54.03): A - Laplace transform
//! analog response in rad/sec, B - Analog response in Hz, C -
//! Composite (currently undefined), D - Digital (Z - transform)
void setType(const std::string& type);
const std::string& type() const;
//! Gain of response (48.05/58.04)
void setGain(const OPT(double)& gain);
double gain() const;
//! Gain frequency (48.06/58.05)
void setGainFrequency(const OPT(double)& gainFrequency);
double gainFrequency() const;
//! Decimation factor (47.06/57.05)
void setDecimationFactor(const OPT(int)& decimationFactor);
int decimationFactor() const;
//! Estimated delay (47.08/57.07)
void setDelay(const OPT(double)& delay);
double delay() const;
//! Applied correction (47.09/57.08)
void setCorrection(const OPT(double)& correction);
double correction() const;
//! Number of numerators (54.07)
void setNumberOfNumerators(const OPT(int)& numberOfNumerators);
int numberOfNumerators() const;
//! Number of denominators (54.10)
void setNumberOfDenominators(const OPT(int)& numberOfDenominators);
int numberOfDenominators() const;
//! Numerators (54.08-09)
void setNumerators(const OPT(RealArray)& numerators);
RealArray& numerators();
const RealArray& numerators() const;
//! Denominators (54.11-12)
void setDenominators(const OPT(RealArray)& denominators);
RealArray& denominators();
const RealArray& denominators() const;
void setRemark(const OPT(Blob)& remark);
Blob& remark();
const Blob& remark() const;
// ------------------------------------------------------------------
// Index management
// ------------------------------------------------------------------
public:
//! Returns the object's index
const ResponseIIRIndex& index() const;
//! Checks two objects for equality regarding their index
bool equalIndex(const ResponseIIR* lhs) const;
// ------------------------------------------------------------------
// Public interface
// ------------------------------------------------------------------
public:
Inventory* inventory() const;
//! Implement Object interface
bool assign(Object *other) override;
bool attachTo(PublicObject *parent) override;
bool detachFrom(PublicObject *parent) override;
bool detach() override;
//! Creates a clone
Object *clone() const override;
//! Implement PublicObject interface
bool updateChild(Object *child) override;
void accept(Visitor *visitor) override;
// ------------------------------------------------------------------
// Implementation
// ------------------------------------------------------------------
private:
// Index
ResponseIIRIndex _index;
// Attributes
std::string _type;
OPT(double) _gain;
OPT(double) _gainFrequency;
OPT(int) _decimationFactor;
OPT(double) _delay;
OPT(double) _correction;
OPT(int) _numberOfNumerators;
OPT(int) _numberOfDenominators;
OPT(RealArray) _numerators;
OPT(RealArray) _denominators;
OPT(Blob) _remark;
DECLARE_SC_CLASSFACTORY_FRIEND(ResponseIIR);
};
}
}
#endif