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.

218 lines
6.7 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_RESPONSEFAP_H
#define SEISCOMP_DATAMODEL_RESPONSEFAP_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(ResponseFAP);
class Inventory;
class SC_SYSTEM_CORE_API ResponseFAPIndex {
// ------------------------------------------------------------------
// Xstruction
// ------------------------------------------------------------------
public:
//! Constructor
ResponseFAPIndex();
ResponseFAPIndex(const std::string& name);
//! Copy constructor
ResponseFAPIndex(const ResponseFAPIndex&);
// ------------------------------------------------------------------
// Operators
// ------------------------------------------------------------------
public:
bool operator==(const ResponseFAPIndex&) const;
bool operator!=(const ResponseFAPIndex&) const;
// ------------------------------------------------------------------
// Attributes
// ------------------------------------------------------------------
public:
std::string name;
};
/**
* \brief This type describes a sensor response composed of
* \brief frequency/amplitude/phase angle tuples. According to the
* \brief SEED manual (blockette 55) this description alone is not an
* \brief acceptable response description.
*/
class SC_SYSTEM_CORE_API ResponseFAP : public PublicObject {
DECLARE_SC_CLASS(ResponseFAP)
DECLARE_SERIALIZATION;
DECLARE_METAOBJECT;
// ------------------------------------------------------------------
// Xstruction
// ------------------------------------------------------------------
protected:
//! Protected constructor
ResponseFAP();
public:
//! Copy constructor
ResponseFAP(const ResponseFAP& other);
//! Constructor with publicID
ResponseFAP(const std::string& publicID);
//! Destructor
~ResponseFAP() override;
// ------------------------------------------------------------------
// Creators
// ------------------------------------------------------------------
public:
static ResponseFAP* Create();
static ResponseFAP* Create(const std::string& publicID);
// ------------------------------------------------------------------
// Lookup
// ------------------------------------------------------------------
public:
static ResponseFAP* Find(const std::string& publicID);
// ------------------------------------------------------------------
// Operators
// ------------------------------------------------------------------
public:
//! Copies the metadata of other to this
//! No changes regarding child objects are made
ResponseFAP& operator=(const ResponseFAP& other);
//! Checks for equality of two objects. Child objects
//! are not part of the check.
bool operator==(const ResponseFAP& other) const;
bool operator!=(const ResponseFAP& other) const;
//! Wrapper that calls operator==
bool equal(const ResponseFAP& other) const;
// ------------------------------------------------------------------
// Setters/Getters
// ------------------------------------------------------------------
public:
//! Unique response name
void setName(const std::string& name);
const std::string& name() 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;
//! The number of fap tuples in the response
void setNumberOfTuples(const OPT(int)& numberOfTuples);
int numberOfTuples() const;
//! The tuples organized as linear array. The array size must
//! be numberOfTuples * 3. Each tuple consists of frequency (in
//! Hz), amplitude and phase angle (in degree).
void setTuples(const OPT(RealArray)& tuples);
RealArray& tuples();
const RealArray& tuples() const;
//! Optional remark
void setRemark(const OPT(Blob)& remark);
Blob& remark();
const Blob& remark() const;
// ------------------------------------------------------------------
// Index management
// ------------------------------------------------------------------
public:
//! Returns the object's index
const ResponseFAPIndex& index() const;
//! Checks two objects for equality regarding their index
bool equalIndex(const ResponseFAP* 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
ResponseFAPIndex _index;
// Attributes
OPT(double) _gain;
OPT(double) _gainFrequency;
OPT(int) _numberOfTuples;
OPT(RealArray) _tuples;
OPT(Blob) _remark;
DECLARE_SC_CLASSFACTORY_FRIEND(ResponseFAP);
};
}
}
#endif