CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Classes | Public Member Functions | Private Attributes
funct::ConvolutionStruct< A, B, Integrator > Class Template Reference

#include <Convolution.h>

Classes

struct  function
 

Public Member Functions

 ConvolutionStruct (const A &a, const B &b, double min, double max, const Integrator &integrator)
 
double operator() (double x) const
 

Private Attributes

double delta_
 
function f_
 
Integrator integrator_
 
double max_
 
double min_
 

Detailed Description

template<typename A, typename B, typename Integrator>
class funct::ConvolutionStruct< A, B, Integrator >

Definition at line 8 of file Convolution.h.

Constructor & Destructor Documentation

template<typename A , typename B , typename Integrator >
funct::ConvolutionStruct< A, B, Integrator >::ConvolutionStruct ( const A a,
const B b,
double  min,
double  max,
const Integrator &  integrator 
)
inline

Definition at line 11 of file Convolution.h.

References edm::errors::Configuration, and edm::hlt::Exception.

12  :
13  f_(a, b), min_(min), max_(max), integrator_(integrator) {
14  if(max < min)
16  << "Convolution: min must be smaller than max\n";
17  }
#define min(a, b)
Definition: mlp_lapack.h:161
const T & max(const T &a, const T &b)
double a
Definition: hdecay.h:121

Member Function Documentation

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

Member Data Documentation

template<typename A , typename B , typename Integrator >
double funct::ConvolutionStruct< A, B, Integrator >::delta_
private

Definition at line 35 of file Convolution.h.

template<typename A , typename B , typename Integrator >
function funct::ConvolutionStruct< A, B, Integrator >::f_
private
template<typename A , typename B , typename Integrator >
Integrator funct::ConvolutionStruct< A, B, Integrator >::integrator_
private
template<typename A , typename B , typename Integrator >
double funct::ConvolutionStruct< A, B, Integrator >::max_
private
template<typename A , typename B , typename Integrator >
double funct::ConvolutionStruct< A, B, Integrator >::min_
private