[seiscomp, scanloc] Install, add .gitignore
This commit is contained in:
135
include/seiscomp/datamodel/tensor.h
Normal file
135
include/seiscomp/datamodel/tensor.h
Normal file
@ -0,0 +1,135 @@
|
||||
/***************************************************************************
|
||||
* 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_TENSOR_H
|
||||
#define SEISCOMP_DATAMODEL_TENSOR_H
|
||||
|
||||
|
||||
#include <seiscomp/datamodel/realquantity.h>
|
||||
#include <seiscomp/core/baseobject.h>
|
||||
#include <seiscomp/core.h>
|
||||
#include <seiscomp/core/exceptions.h>
|
||||
|
||||
|
||||
namespace Seiscomp {
|
||||
namespace DataModel {
|
||||
|
||||
|
||||
DEFINE_SMARTPOINTER(Tensor);
|
||||
|
||||
|
||||
/**
|
||||
* \brief The Tensor class represents the six moment-tensor elements
|
||||
* \brief Mrr , Mtt ,
|
||||
* \brief Mpp , Mrt , Mrp , Mtp in the spherical coordinate system
|
||||
* \brief defined by local
|
||||
* \brief upward vertical (r), North-South (t), and West-East (p)
|
||||
* \brief directions. See
|
||||
* \brief Aki and Richards (1980) for conversions to other coordinate
|
||||
* \brief systems.
|
||||
*/
|
||||
class SC_SYSTEM_CORE_API Tensor : public Core::BaseObject {
|
||||
DECLARE_SC_CLASS(Tensor)
|
||||
DECLARE_SERIALIZATION;
|
||||
DECLARE_METAOBJECT;
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// Xstruction
|
||||
// ------------------------------------------------------------------
|
||||
public:
|
||||
//! Constructor
|
||||
Tensor();
|
||||
|
||||
//! Copy constructor
|
||||
Tensor(const Tensor& other);
|
||||
|
||||
//! Destructor
|
||||
~Tensor() override;
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// Operators
|
||||
// ------------------------------------------------------------------
|
||||
public:
|
||||
//! Copies the metadata of other to this
|
||||
Tensor& operator=(const Tensor& other);
|
||||
//! Checks for equality of two objects. Child objects
|
||||
//! are not part of the check.
|
||||
bool operator==(const Tensor& other) const;
|
||||
bool operator!=(const Tensor& other) const;
|
||||
|
||||
//! Wrapper that calls operator==
|
||||
bool equal(const Tensor& other) const;
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// Setters/Getters
|
||||
// ------------------------------------------------------------------
|
||||
public:
|
||||
//! Moment-tensor element Mrr in Nm.
|
||||
void setMrr(const RealQuantity& Mrr);
|
||||
RealQuantity& Mrr();
|
||||
const RealQuantity& Mrr() const;
|
||||
|
||||
//! Moment-tensor element Mtt in Nm.
|
||||
void setMtt(const RealQuantity& Mtt);
|
||||
RealQuantity& Mtt();
|
||||
const RealQuantity& Mtt() const;
|
||||
|
||||
//! Moment-tensor element Mpp in Nm.
|
||||
void setMpp(const RealQuantity& Mpp);
|
||||
RealQuantity& Mpp();
|
||||
const RealQuantity& Mpp() const;
|
||||
|
||||
//! Moment-tensor element Mrt in Nm.
|
||||
void setMrt(const RealQuantity& Mrt);
|
||||
RealQuantity& Mrt();
|
||||
const RealQuantity& Mrt() const;
|
||||
|
||||
//! Moment-tensor element Mrp in Nm.
|
||||
void setMrp(const RealQuantity& Mrp);
|
||||
RealQuantity& Mrp();
|
||||
const RealQuantity& Mrp() const;
|
||||
|
||||
//! Moment-tensor element Mtp in Nm.
|
||||
void setMtp(const RealQuantity& Mtp);
|
||||
RealQuantity& Mtp();
|
||||
const RealQuantity& Mtp() const;
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// Implementation
|
||||
// ------------------------------------------------------------------
|
||||
private:
|
||||
// Attributes
|
||||
RealQuantity _mrr;
|
||||
RealQuantity _mtt;
|
||||
RealQuantity _mpp;
|
||||
RealQuantity _mrt;
|
||||
RealQuantity _mrp;
|
||||
RealQuantity _mtp;
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user