CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
funct::PowerStruct< A, B > Struct Template Reference

#include <Power.h>

Public Member Functions

 operator double () const
 
double operator() () const
 
double operator() (double x) const
 
double operator() (double x, double y) const
 
 PowerStruct (const A &a, const B &b)
 

Public Attributes

A _1
 
B _2
 

Detailed Description

template<typename A, typename B>
struct funct::PowerStruct< A, B >

Definition at line 7 of file Power.h.

Constructor & Destructor Documentation

◆ PowerStruct()

template<typename A , typename B >
funct::PowerStruct< A, B >::PowerStruct ( const A a,
const B b 
)
inline

Definition at line 8 of file Power.h.

8 : _1(a), _2(b) {}

Member Function Documentation

◆ operator double()

template<typename A , typename B >
funct::PowerStruct< A, B >::operator double ( ) const
inline

Definition at line 10 of file Power.h.

10 { return std::pow(_1(), _2()); }

References funct::PowerStruct< A, B >::_1, funct::PowerStruct< A, B >::_2, and funct::pow().

◆ operator()() [1/3]

template<typename A , typename B >
double funct::PowerStruct< A, B >::operator() ( ) const
inline

Definition at line 9 of file Power.h.

9 { return std::pow(_1(), _2()); }

References funct::PowerStruct< A, B >::_1, funct::PowerStruct< A, B >::_2, and funct::pow().

◆ operator()() [2/3]

template<typename A , typename B >
double funct::PowerStruct< A, B >::operator() ( double  x) const
inline

Definition at line 11 of file Power.h.

11 { return std::pow(_1(x), _2(x)); }

References funct::PowerStruct< A, B >::_1, funct::PowerStruct< A, B >::_2, and funct::pow().

◆ operator()() [3/3]

template<typename A , typename B >
double funct::PowerStruct< A, B >::operator() ( double  x,
double  y 
) const
inline

Definition at line 12 of file Power.h.

12 { return std::pow(_1(x, y), _2(x, y)); }

References funct::PowerStruct< A, B >::_1, funct::PowerStruct< A, B >::_2, and funct::pow().

Member Data Documentation

◆ _1

template<typename A , typename B >
A funct::PowerStruct< A, B >::_1

◆ _2

template<typename A , typename B >
B funct::PowerStruct< A, B >::_2
DDAxes::y
DDAxes::x
b
double b
Definition: hdecay.h:118
a
double a
Definition: hdecay.h:119
funct::pow
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:29
funct::PowerStruct::_1
A _1
Definition: Power.h:13
funct::PowerStruct::_2
B _2
Definition: Power.h:14