OOPS
Vector3D.h
Go to the documentation of this file.
1 /*
2  * (C) Crown copyright 2020, Met Office
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
8 #ifndef TEST_ASSIMILATION_VECTOR3D_H_
9 #define TEST_ASSIMILATION_VECTOR3D_H_
10 
11 #include "oops/util/Printable.h"
12 
13 namespace test {
14 
15  class Vector3D : public util::Printable {
16  public:
17  Vector3D(const double& x,
18  const double& y,
19  const double& z);
20  Vector3D(const Vector3D&, const bool copy = true);
21  Vector3D& operator=(const Vector3D&);
22  Vector3D& operator+=(const Vector3D&);
23  Vector3D& operator-=(const Vector3D&);
24  Vector3D& operator*=(const double);
25  Vector3D& operator*=(const Vector3D&);
26  Vector3D& operator/=(const Vector3D&);
27  /// x -> x + mult * rhs
28  void axpy(const double, const Vector3D&);
29  double dot_product_with(const Vector3D&) const;
30  double x() const {return x_;}
31  double y() const {return y_;}
32  double z() const {return z_;}
33 
34  private:
35  void print(std::ostream & os) const;
36 
37  double x_;
38  double y_;
39  double z_;
40  };
41 } // namespace test
42 
43 #endif // TEST_ASSIMILATION_VECTOR3D_H_
Vector3D & operator-=(const Vector3D &)
Definition: Vector3D.cc:42
double x() const
Definition: Vector3D.h:30
Vector3D & operator=(const Vector3D &)
Definition: Vector3D.cc:26
double y() const
Definition: Vector3D.h:31
Vector3D & operator+=(const Vector3D &)
Definition: Vector3D.cc:34
double x_
Definition: Vector3D.h:37
Vector3D & operator/=(const Vector3D &)
Definition: Vector3D.cc:66
Vector3D & operator*=(const double)
Definition: Vector3D.cc:50
double z_
Definition: Vector3D.h:39
double dot_product_with(const Vector3D &) const
Definition: Vector3D.cc:81
Vector3D(const double &x, const double &y, const double &z)
Definition: Vector3D.cc:12
double y_
Definition: Vector3D.h:38
void print(std::ostream &os) const
Definition: Vector3D.cc:86
double z() const
Definition: Vector3D.h:32
void axpy(const double, const Vector3D &)
x -> x + mult * rhs
Definition: Vector3D.cc:74