CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
npstat::FcnFunctor1< Result, Arg1 > Struct Template Reference

#include <SimpleFunctors.h>

Inheritance diagram for npstat::FcnFunctor1< Result, Arg1 >:
npstat::Functor1< Result, Arg1 >

Public Member Functions

 FcnFunctor1 (Result(*fcn)(Arg1))
 
Result operator() (const Arg1 &a) const
 
- Public Member Functions inherited from npstat::Functor1< Result, Arg1 >
virtual ~Functor1 ()
 

Private Member Functions

 FcnFunctor1 ()
 

Private Attributes

Result(* fcn_ )(Arg1)
 

Additional Inherited Members

- Public Types inherited from npstat::Functor1< Result, Arg1 >
typedef Arg1 first_argument_type
 
typedef Result result_type
 

Detailed Description

template<typename Result, typename Arg1>
struct npstat::FcnFunctor1< Result, Arg1 >

Adaptation for using single-argument functors with simple cmath-style functions. Do not use this struct as a base class.

Definition at line 150 of file SimpleFunctors.h.

Constructor & Destructor Documentation

template<typename Result , typename Arg1 >
npstat::FcnFunctor1< Result, Arg1 >::FcnFunctor1 ( Result(*)(Arg1)  fcn)
inlineexplicit

Definition at line 152 of file SimpleFunctors.h.

152 : fcn_(fcn) {}
Result(* fcn_)(Arg1)
void fcn(int &, double *, double &, double *, int)
template<typename Result , typename Arg1 >
npstat::FcnFunctor1< Result, Arg1 >::FcnFunctor1 ( )
private

Member Function Documentation

template<typename Result , typename Arg1 >
Result npstat::FcnFunctor1< Result, Arg1 >::operator() ( const Arg1 &  a) const
inlinevirtual

Implements npstat::Functor1< Result, Arg1 >.

Definition at line 154 of file SimpleFunctors.h.

References npstat::FcnFunctor1< Result, Arg1 >::fcn_.

154 {return fcn_(a);}
Result(* fcn_)(Arg1)
double a
Definition: hdecay.h:121

Member Data Documentation

template<typename Result , typename Arg1 >
Result(* npstat::FcnFunctor1< Result, Arg1 >::fcn_)(Arg1)
private

Definition at line 158 of file SimpleFunctors.h.

Referenced by npstat::FcnFunctor1< Result, Arg1 >::operator()().