CMS 3D CMS Logo

Composition.h
Go to the documentation of this file.
1 #ifndef PhysicsTools_Utilities_Composition_h
2 #define PhysicsTools_Utilities_Composition_h
3 #include <boost/static_assert.hpp>
4 
5 namespace funct {
6  template <typename A, typename B>
8  CompositionStruct(const A& a, const B& b) : _1(a), _2(b) {}
9  double operator()() const { return _1(_2()); }
10  operator double() const { return _1(_2()); }
11  double operator()(double x) const { return _1(_2(x)); }
12  double operator()(double x, double y) const { return _1(_2(x, y)); }
13  A _1;
14  B _2;
15  };
16 
17  template <typename A, typename B>
18  struct Composition {
20  static type compose(const A& a, const B& b) { return type(a, b); }
21  };
22 
23  template <typename A, typename B>
24  inline typename funct::Composition<A, B>::type compose(const A& a, const B& b) {
26  }
27 
28 } // namespace funct
29 
30 #endif
Definition: Abs.h:5
static type compose(const A &a, const B &b)
Definition: Composition.h:20
double operator()(double x) const
Definition: Composition.h:11
double operator()(double x, double y) const
Definition: Composition.h:12
CompositionStruct(const A &a, const B &b)
Definition: Composition.h:8
funct::Composition< A, B >::type compose(const A &a, const B &b)
Definition: Composition.h:24
CompositionStruct< A, B > type
Definition: Composition.h:19
double b
Definition: hdecay.h:118
arg type
Definition: Factorize.h:37
double a
Definition: hdecay.h:119
double operator()() const
Definition: Composition.h:9