Class documentation of Concepts

Loading...
Searching...
No Matches
frm_product.hh
Go to the documentation of this file.
1
8#ifndef productformula_hh
9#define productformula_hh
10
11#include "basics/typedefs.hh"
12#include "basics/output.hh"
14#include "formulaContainer.hh"
15#include "exceptions.hh"
16
17namespace concepts {
18
19
20 // ************************************************************ Frm_Product **
21
30 template<class F, class H = F, class J = F>
31 class Frm_Product : public Formula<F> {
32 public:
35 : frm1_(frm1), frm2_(frm2)
36 {
37 if (frm1.empty()) throw(PointerToEmptyElementFormula());
38 if (frm2.empty()) throw(PointerToEmptyElementFormula());
39 }
40 virtual F operator() (const Real p, const Real t = 0.0) const {
41 return frm1_(p,t) * frm2_(p,t);
42 }
43 virtual F operator() (const Real2d& p, const Real t = 0.0) const {
44 return frm1_(p,t) * frm2_(p,t);
45 }
46 virtual F operator() (const Real3d& p, const Real t = 0.0) const {
47 return frm1_(p,t) * frm2_(p,t);
48 }
49 virtual Frm_Product<F,H,J>* clone() const {
50 return new Frm_Product<F,H,J>(frm1_, frm2_);
51 }
52 protected:
53 virtual std::ostream& info(std::ostream& os) const {
54 return os << concepts::typeOf(*this)<< "(" << frm1_ << " * " << frm2_ << ")";
55 }
56 private:
58 const FormulaContainer<H> frm1_;
60 const FormulaContainer<J> frm2_;
61 };
62
63 // ************************************************************ operator* **
64
65 Frm_Product<Real> operator*(const Formula<Real>& frm, const Real a);
66
67 Frm_Product<Cmplx,Real> operator*(const Formula<Real>& frm, const Cmplx a);
68
69 Frm_Product<Cmplx,Cmplx,Real> operator*(const Formula<Cmplx>& frm, const Real a);
70
71 Frm_Product<Cmplx> operator*(const Formula<Cmplx>& frm, const Cmplx a);
72
73 // ************
74
75 Frm_Product<Real> operator*(const Formula<Real>& frm1, const Formula<Real>& frm2);
76
77 Frm_Product<Cmplx,Real> operator*(const Formula<Real>& frm1, const Formula<Cmplx>& frm2);
78
79 Frm_Product<Cmplx,Cmplx,Real> operator*(const Formula<Cmplx>& frm1, const Formula<Real>& frm2);
80
81 Frm_Product<Cmplx> operator*(const Formula<Cmplx>& frm1, const Formula<Cmplx>& frm2);
82
83} // namespace concepts
84
85
86#endif // productformula_hh
virtual F operator()(const Real p, const Real t=0.0) const
virtual Frm_Product< F, H, J > * clone() const
Virtual copy constructor.
virtual std::ostream & info(std::ostream &os) const
Returns information in an output stream.
std::string typeOf(const T &t)
Definition output.hh:43
double Real
Definition typedefs.hh:39
Set< F > makeSet(uint n, const F &first,...)
Definition set.hh:320
std::complex< Real > Cmplx
Type for a complex number. It also depends on the setting of Real.
Definition typedefs.hh:42