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::AuxFunc1< UF > Struct Template Reference

Auxiliary struct 1. More...

#include <Integrate.h>

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

Public Member Functions

 AuxFunc1 (const UF &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::AuxFunc1< UF >

Auxiliary struct 1.

Definition at line 603 of file Integrate.h.

Constructor & Destructor Documentation

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

Definition at line 606 of file Integrate.h.

606 : _f(f) {}

Member Function Documentation

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

Definition at line 607 of file Integrate.h.

607  {
608  return _f(1.0/x - 1.0)/(x*x);
609  }
double x

Member Data Documentation

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

Definition at line 611 of file Integrate.h.


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