LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
LSSTDataManagementBasePackage
Public Member Functions | Private Attributes | List of all members
lsst::afw::math::details::AuxFunc2< UF > Struct Template Reference

#include <Integrate.h>

Inheritance diagram for lsst::afw::math::details::AuxFunc2< UF >:

Public Member Functions

 AuxFunc2 (UF const &f)
 
UF::result_type operator() (typename UF::argument_type x) const
 

Private Attributes

UF const & _f
 

Detailed Description

template<class UF>
struct lsst::afw::math::details::AuxFunc2< UF >

Definition at line 624 of file Integrate.h.

Constructor & Destructor Documentation

template<class UF >
lsst::afw::math::details::AuxFunc2< UF >::AuxFunc2 ( UF const &  f)
inline

Definition at line 627 of file Integrate.h.

627 : _f(f) {}

Member Function Documentation

template<class UF >
UF::result_type lsst::afw::math::details::AuxFunc2< UF >::operator() ( typename UF::argument_type  x) const
inline

Definition at line 628 of file Integrate.h.

628  {
629  return _f(1.0/x + 1.0)/(x*x);
630  }
double x

Member Data Documentation

template<class UF >
UF const& lsst::afw::math::details::AuxFunc2< UF >::_f
private

Definition at line 632 of file Integrate.h.


The documentation for this struct was generated from the following file: