CMS 3D CMS Logo

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

#include <Ratio.h>

Public Member Functions

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

Public Attributes

A _1
 
B _2
 

Detailed Description

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

Definition at line 7 of file Ratio.h.

Constructor & Destructor Documentation

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

Definition at line 8 of file Ratio.h.

8 : _1(a), _2(b) { }
double b
Definition: hdecay.h:120
double a
Definition: hdecay.h:121

Member Function Documentation

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

Definition at line 12 of file Ratio.h.

References funct::RatioStruct< A, B >::_1, and funct::RatioStruct< A, B >::_2.

12  {
13  return _1() / _2();
14  }
template<typename A , typename B >
double funct::RatioStruct< A, B >::operator() ( ) const
inline

Definition at line 9 of file Ratio.h.

References funct::RatioStruct< A, B >::_1, and funct::RatioStruct< A, B >::_2.

9  {
10  return _1() / _2();
11  }
template<typename A , typename B >
double funct::RatioStruct< A, B >::operator() ( double  x) const
inline

Definition at line 15 of file Ratio.h.

References funct::RatioStruct< A, B >::_1, and funct::RatioStruct< A, B >::_2.

15  {
16  return _1(x) / _2(x);
17  }
template<typename A , typename B >
double funct::RatioStruct< A, B >::operator() ( double  x,
double  y 
) const
inline

Definition at line 18 of file Ratio.h.

References funct::RatioStruct< A, B >::_1, and funct::RatioStruct< A, B >::_2.

18  {
19  return _1(x, y) / _2(x, y);
20  }

Member Data Documentation

template<typename A , typename B >
A funct::RatioStruct< A, B >::_1
template<typename A , typename B >
B funct::RatioStruct< A, B >::_2